Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Windows on GCE #338

Merged
merged 1 commit into from
Jun 26, 2015
Merged

Windows on GCE #338

merged 1 commit into from
Jun 26, 2015

Conversation

ehankland
Copy link
Contributor

No description provided.

@ehankland
Copy link
Contributor Author

test this please.

if FLAGS.os_type == benchmark_spec.WINDOWS:
valid_benchmarks = windows_benchmarks.VALID_BENCHMARKS
else:
valid_benchmarks = benchmarks.VALID_BENCHMARKS
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Line 163 below - can you expand the error message to say "benchmark %s not valid on %platform"?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

@ehankland ehankland force-pushed the windows-gce branch 2 times, most recently from 7c08604 to 39762d9 Compare June 24, 2015 00:08
@@ -157,7 +162,10 @@ def __init__(self, benchmark_info):
self.project = FLAGS.project
defaults = DEFAULTS[self.cloud]
self.zones = FLAGS.zones or [defaults[ZONE]]
self.image = FLAGS.image or defaults[IMAGE]
if FLAGS.os_type == WINDOWS:
self.image = FLAGS.image or defaults.get(WINDOWS_IMAGE)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this would be a lot cleaner if each cloud provider had a {os_type: default_image} map. Currently, would setting --os_type=rhel still install Ubuntu if you don't separately override --image?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed in another PR

@klausw
Copy link
Contributor

klausw commented Jun 24, 2015

Overall I think it looks ok, though I don't know enough about Windows scripting to make meaningful comments on that. As discussed offline, at some point it would be nice to replace various if FLAGS.os_type == WINDOWS conditionals with controller subclasses or similar, but that can happen as a separate refactor.

@ehankland ehankland force-pushed the windows-gce branch 2 times, most recently from f4a4263 to 79cf0a8 Compare June 26, 2015 17:40
@ehankland
Copy link
Contributor Author

PTAL

@klausw
Copy link
Contributor

klausw commented Jun 26, 2015

Looks good as far as overall integration is concerned, can't really comment on the Windows specific side including @ivansmf 's comments.

Please flatten the changes before merging, should avoid having "respond to review comments" commits in the main branch history.

@ehankland ehankland force-pushed the windows-gce branch 3 times, most recently from f931117 to 447aa8e Compare June 26, 2015 22:31
ehankland added a commit that referenced this pull request Jun 26, 2015
@ehankland ehankland merged commit e1153f5 into GoogleCloudPlatform:dev Jun 26, 2015
@ehankland ehankland deleted the windows-gce branch June 26, 2015 22:40
klausw added a commit that referenced this pull request Jul 9, 2015
Release 0.18.0.

(See also #369
which includes this change log with clickable GH-* links.)

* New features:
  * Support OpenStack as cloud provider (GH-305, GH-353, thanks @kivio and
    @mateusz-blaszkowski)
  * Support Rackspace as cloud provider (GH-336, thanks @meteorfox and @jrperritt)
  * Add support for ContainerizedVM using docker exec (GH-333, thanks @gablg1)
  * Windows guest VM support on Static VM (GH-350), Azure (GH-349, GH-374), AWS
    (GH-347), and GCE (GH-338)
  * Add NTttcp Windows networking benchmark (GH-348)

* Enhancements:
  * Support using proxies in VMs (GH-339, GH-337, thanks @kivio)
  * Enable optional migration on GCE (GH-343)
  * Execute long running commands via a remote agent (GH-310)
  * Add resource creation/deletion times to logs (GH-316)

* Bugfixes and maintenance updates:
  * Update PKB to work with Azure version 0.9.3 (GH-312)
  * Fix AWS CLI usage on Windows host (GH-313)
  * Auto-fetch AMI IDs for AWS images (GH-364)
  * Fix publisher missing info for default image and machine type (GH-357)
  * Fix 'no attribute pkb_thread_log_context' error for sub-thread logs (GH-322)

* Benchmark-specific changes:
  * aerospike: config/flag handling bugfixes (GH-367, GH-360, GH-354)
  * cassandra_ycsb: move num_vms prerequisite check
  * fio: add latency percentiles for results (GH-344)
  * hadoop_terasort: Fix bad SSH option (GH-328)
  * iperf: add lower bounds to arguments (GH-314)
  * iperf: add timeout to parallel benchmark runs to handle iperf hangs (GH-375)
  * netperf: Support confidence intervals, increase test length, report stddev
    (GH-317, GH-306)
  * ycsb: Drop unaggregatable results from samples (GH-324)

* Development and testing:
  * **Breaking Change** Automated testing now uses `tox` (GH-330)
  * Refactored hook scripts, including new opt-in pre-push hook (GH-363)
  * Use travis for CI testing (GH-340)
  * Speed up tests using timeouts (GH-299)

* Internals:
  * Move defaults from benchmark_spec to VM classes, move network instantiation
    out of benchmark spec (GH-342)
  * Add event hook support (GH-315)
  * Refactor VM classes (GH-321)
@klausw klausw mentioned this pull request Jul 9, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants