Dan Halperin
Dan Halperin
and re-add the Java8 override for examples-java8 module
We have identified an issue with Dataflow jobs reading from `TextIO` with compression type set to `GZIP` or `BZIP2`, potentially losing data during processing. Specifically, using [TextIO](https://github.com/GoogleCloudPlatform/DataflowJavaSDK/blob/master/sdk/src/main/java/com/google/cloud/dataflow/sdk/io/TextIO.java#L280): - `TextIO.from(...).withCompressionType(CompressionType.GZIP)` or...
A common request is the ability in streaming pipelines to publish data to a file per window, like already exists for [`BigQueryIO`](https://github.com/GoogleCloudPlatform/DataflowJavaSDK/blob/2b200759edc25a6ec43ca277dac33fb62fddf475/sdk/src/main/java/com/google/cloud/dataflow/sdk/io/BigQueryIO.java#L152). We should add a `ParDo`-based example for this,...
Just `brew upgraded` to 0.9.1, and now getting this crash trying to assign reviewers: ``` (bazel) dan@dan batfish-enterprise % brew upgrade spr Warning: ejoffe/tap/spr 0.9.1 already installed ``` Logs: ```...
I did something like this: ``` git checkout -b feature-1 # make commit 1 # make commit 2 git spr update # created two PRs ``` Then I switched to...
The anonymizer should preserve known IPs and/or prefixes as appropriate. The stanardized list of known prefixes is here: https://www.iana.org/assignments/iana-ipv6-special-registry/iana-ipv6-special-registry.xhtml Decisions may need to be made on a case-by-case basis. (To...
We run `autoflake` with `-c -r`, so it checks every Python file in the repo in `check` mode. Our CI output looks like this: ``` + autoflake -cr --remove-all-unused-imports --remove-unused-variables...
If I look at the docs for [`bfq.reachability`](https://pybatfish.readthedocs.io/en/latest/notebooks/forwarding.html#Reachability), the `DispositionSpec` link goes to a page explaining the specifier. However, the `HeaderConstraints` link goes to python documentation instead of a custom...
I could not find a good link on pybatfish.readthedocs.io for this; we need a more standard thing to do for users than linking them the contents of @saparikh 's config...
Hi, We make great use of the `chrome_options` and `firefox_options` fixtures - they're great. However, some functionality is only exposed on a specific instance of `Webdriver`, e.g., [`ChromiumDriver#set_network_conditions`](https://github.com/SeleniumHQ/selenium/blob/df105ba5c43f00cb12f69203f375ed68fe4df696/py/selenium/webdriver/chromium/webdriver.py#L112) Is there...