[arrow] Diff for: [GitHub] kszucs closed pull request #3403: ARROW-4260: [Python] NumPy buffer protocol failure

2019-01-15 Thread GitBox
diff --git a/ci/appveyor-cpp-build.bat b/ci/appveyor-cpp-build.bat index 387dd55d18..78f5e41928 100644 --- a/ci/appveyor-cpp-build.bat +++ b/ci/appveyor-cpp-build.bat @@ -95,11 +95,12 @@ if "%JOB%" == "Build_Debug" ( exit /B 0 ) -conda create -n arrow -q -y ^ +conda create -n arrow -q -y -c

[arrow] Diff for: [GitHub] kszucs closed pull request #3405: ARROW-4266: [Python][CI] Disable ORC tests in dask integration test

2019-01-15 Thread GitBox
diff --git a/integration/dask/runtest.sh b/integration/dask/runtest.sh index 9a37e0a67b..baf9ccf445 100755 --- a/integration/dask/runtest.sh +++ b/integration/dask/runtest.sh @@ -29,6 +29,7 @@ python -c "import pyarrow.parquet" # pytest -sv --pyargs dask.bytes.tests.test_hdfs # pytest -sv

[arrow] Diff for: [GitHub] wesm closed pull request #3395: ARROW-4258: [Python] Safe cast fails from numpy float64 array with nans to integer

2019-01-15 Thread GitBox
diff --git a/cpp/src/arrow/python/numpy_to_arrow.cc b/cpp/src/arrow/python/numpy_to_arrow.cc index aada6bf598..a944b80914 100644 --- a/cpp/src/arrow/python/numpy_to_arrow.cc +++ b/cpp/src/arrow/python/numpy_to_arrow.cc @@ -443,8 +443,8 @@ inline Status

[arrow] Diff for: [GitHub] kou closed pull request #3390: ARROW-4228: [GLib] Add garrow_list_data_type_get_field()

2019-01-14 Thread GitBox
diff --git a/c_glib/arrow-glib/composite-data-type.cpp b/c_glib/arrow-glib/composite-data-type.cpp index 5ddc1c3dd8..675900a5be 100644 --- a/c_glib/arrow-glib/composite-data-type.cpp +++ b/c_glib/arrow-glib/composite-data-type.cpp @@ -88,9 +88,26 @@ garrow_list_data_type_new(GArrowField *field)

[arrow] Diff for: [GitHub] kszucs merged pull request #3406: [CI] Temporary fix for conda-forge migration

2019-01-15 Thread GitBox
diff --git a/ci/appveyor-cpp-build.bat b/ci/appveyor-cpp-build.bat index 78f5e41928..5b653a9050 100644 --- a/ci/appveyor-cpp-build.bat +++ b/ci/appveyor-cpp-build.bat @@ -95,7 +95,7 @@ if "%JOB%" == "Build_Debug" ( exit /B 0 ) -conda create -n arrow -q -y -c conda-forge ^ +conda create -n

[arrow] Diff for: [GitHub] robertnishihara closed pull request #3410: ARROW-4269: [Python] Fix serialization in pandas 0.22

2019-01-15 Thread GitBox
diff --git a/python/pyarrow/serialization.py b/python/pyarrow/serialization.py index 6bbe1c7bc8..9b261c1bf7 100644 --- a/python/pyarrow/serialization.py +++ b/python/pyarrow/serialization.py @@ -174,26 +174,27 @@ def _deserialize_pandas_series(data): custom_serializer=_pickle_to_buffer,

[arrow] Diff for: [GitHub] kszucs closed pull request #3402: WIP ARROW-4260: [Python] NumPy buffer protocol failure

2019-01-15 Thread GitBox
diff --git a/ci/appveyor-cpp-build.bat b/ci/appveyor-cpp-build.bat index 387dd55d18..6681f5673f 100644 --- a/ci/appveyor-cpp-build.bat +++ b/ci/appveyor-cpp-build.bat @@ -97,7 +97,7 @@ if "%JOB%" == "Build_Debug" ( conda create -n arrow -q -y ^ python=%PYTHON% ^ - six pytest

[arrow] Diff for: [GitHub] wesm closed pull request #3397: ARROW-4257: [Release] Update release verification script to check binaries on Bintray

2019-01-14 Thread GitBox
diff --git a/dev/release/verify-release-candidate.sh b/dev/release/verify-release-candidate.sh index c8b9c54c82..28fb1e5eb0 100755 --- a/dev/release/verify-release-candidate.sh +++ b/dev/release/verify-release-candidate.sh @@ -87,24 +87,56 @@ fetch_archive() { shasum -a 512 -c

[arrow] Diff for: [GitHub] wesm closed pull request #3398: ARROW-4246: [Plasma][Python] PlasmaClient.list returns wrong information with CUDA enabled Plasma

2019-01-14 Thread GitBox
diff --git a/cpp/src/plasma/common.h b/cpp/src/plasma/common.h index 17155b2dff..8e90fb301c 100644 --- a/cpp/src/plasma/common.h +++ b/cpp/src/plasma/common.h @@ -93,10 +93,6 @@ struct ObjectTableEntry { int64_t data_size; /// Size of the object metadata in bytes. int64_t metadata_size;

[arrow] Diff for: [GitHub] kou closed pull request #3401: ARROW-4246: [Plasma][Python][Follow-up] Ensure plasma::ObjectTableEntry always has the same size regardless of whether built with CUDA support

2019-01-15 Thread GitBox
diff --git a/cpp/src/plasma/common.h b/cpp/src/plasma/common.h index 8e90fb301c..dfbd90c3aa 100644 --- a/cpp/src/plasma/common.h +++ b/cpp/src/plasma/common.h @@ -72,6 +72,12 @@ enum class ObjectState : int { PLASMA_SEALED }; +namespace internal { + +struct CudaIpcPlaceholder {}; + +} //

[arrow] Diff for: [GitHub] robertnishihara closed pull request #3392: ARROW-4249: [Plasma] Clean up client namespace

2019-01-13 Thread GitBox
diff --git a/cpp/src/plasma/common.h b/cpp/src/plasma/common.h index 38925fef92..17155b2dff 100644 --- a/cpp/src/plasma/common.h +++ b/cpp/src/plasma/common.h @@ -33,7 +33,6 @@ #include "plasma/compat.h" #include "arrow/status.h" -#include "arrow/util/logging.h" #ifdef PLASMA_CUDA #include

[arrow] Diff for: [GitHub] xhochy closed pull request #3393: ARROW-4256: [Release] Fix Windows verification script for 0.12 release

2019-01-14 Thread GitBox
diff --git a/dev/release/verify-release-candidate.bat b/dev/release/verify-release-candidate.bat index cc25b045dc..c85ece4465 100644 --- a/dev/release/verify-release-candidate.bat +++ b/dev/release/verify-release-candidate.bat @@ -46,12 +46,11 @@ call conda create -p %_VERIFICATION_CONDA_ENV% -f

[GitHub] [arrow-site] nealrichardson commented on issue #9: ARROW-4473: [Website] Support test site deployment (take 2)

2019-08-12 Thread GitBox
nealrichardson commented on issue #9: ARROW-4473: [Website] Support test site deployment (take 2) URL: https://github.com/apache/arrow-site/pull/9#issuecomment-520553530 Thanks for the suggestions for simplifying the script, @kou. I did them and the test build seemed to succeed: see

[GitHub] [arrow-site] nealrichardson commented on issue #9: ARROW-4473: [Website] Support test site deployment (take 2)

2019-08-13 Thread GitBox
nealrichardson commented on issue #9: ARROW-4473: [Website] Support test site deployment (take 2) URL: https://github.com/apache/arrow-site/pull/9#issuecomment-521025692 IDK why that file mode would change, but it sounds like a good idea. No reason for a .png to be 755 is there?

[GitHub] [arrow-site] kou commented on issue #9: ARROW-4473: [Website] Support test site deployment (take 2)

2019-08-14 Thread GitBox
kou commented on issue #9: ARROW-4473: [Website] Support test site deployment (take 2) URL: https://github.com/apache/arrow-site/pull/9#issuecomment-521493249 +1 This is an automated message from the Apache Git Service. To

[GitHub] [arrow-site] nealrichardson opened a new pull request #11: ARROW-6246: [Website] Add link to R documentation site

2019-08-14 Thread GitBox
nealrichardson opened a new pull request #11: ARROW-6246: [Website] Add link to R documentation site URL: https://github.com/apache/arrow-site/pull/11 This is an automated message from the Apache Git Service. To respond to

[GitHub] [arrow-site] kou commented on issue #9: ARROW-4473: [Website] Support test site deployment (take 2)

2019-08-14 Thread GitBox
kou commented on issue #9: ARROW-4473: [Website] Support test site deployment (take 2) URL: https://github.com/apache/arrow-site/pull/9#issuecomment-521471371 It seems that `img/arrow.png`'s mode has been changed by

[GitHub] [arrow-site] kou commented on issue #9: ARROW-4473: [Website] Support test site deployment (take 2)

2019-08-14 Thread GitBox
kou commented on issue #9: ARROW-4473: [Website] Support test site deployment (take 2) URL: https://github.com/apache/arrow-site/pull/9#issuecomment-521471569 If we want to maintain `/events/` again, we should migrate the source of `/events/` to Jekyll based one.

[GitHub] [arrow-site] nealrichardson commented on issue #9: ARROW-4473: [Website] Support test site deployment (take 2)

2019-08-14 Thread GitBox
nealrichardson commented on issue #9: ARROW-4473: [Website] Support test site deployment (take 2) URL: https://github.com/apache/arrow-site/pull/9#issuecomment-521457081 @kou @wesm are we good here? This is an automated

[GitHub] [arrow-site] wesm merged pull request #11: ARROW-6246: [Website] Add link to R documentation site

2019-08-15 Thread GitBox
wesm merged pull request #11: ARROW-6246: [Website] Add link to R documentation site URL: https://github.com/apache/arrow-site/pull/11 This is an automated message from the Apache Git Service. To respond to the message,

[GitHub] [arrow-site] wesm commented on issue #11: ARROW-6246: [Website] Add link to R documentation site

2019-08-15 Thread GitBox
wesm commented on issue #11: ARROW-6246: [Website] Add link to R documentation site URL: https://github.com/apache/arrow-site/pull/11#issuecomment-521651223 LGTM, thanks This is an automated message from the Apache Git

[GitHub] [arrow-site] wesm commented on issue #10: ARROW-6217: [Website] Remove needless _site/ directory

2019-08-12 Thread GitBox
wesm commented on issue #10: ARROW-6217: [Website] Remove needless _site/ directory URL: https://github.com/apache/arrow-site/pull/10#issuecomment-520646619 Thanks =) This is an automated message from the Apache Git Service.

[GitHub] [arrow-site] wesm merged pull request #10: ARROW-6217: [Website] Remove needless _site/ directory

2019-08-12 Thread GitBox
wesm merged pull request #10: ARROW-6217: [Website] Remove needless _site/ directory URL: https://github.com/apache/arrow-site/pull/10 This is an automated message from the Apache Git Service. To respond to the message,

[GitHub] [arrow-site] kou commented on issue #9: ARROW-4473: [Website] Support test site deployment (take 2)

2019-08-12 Thread GitBox
kou commented on issue #9: ARROW-4473: [Website] Support test site deployment (take 2) URL: https://github.com/apache/arrow-site/pull/9#issuecomment-520659486 #10 has been merged. Could you rebase your fork? This is an

[GitHub] [arrow-site] nealrichardson commented on issue #9: ARROW-4473: [Website] Support test site deployment (take 2)

2019-08-12 Thread GitBox
nealrichardson commented on issue #9: ARROW-4473: [Website] Support test site deployment (take 2) URL: https://github.com/apache/arrow-site/pull/9#issuecomment-520661062 Here's the diff: https://github.com/nealrichardson/arrow-site/commit/a0d9803c06df8099fb916f24fff579edddf4fefe

[GitHub] [arrow-site] kou opened a new pull request #10: ARROW-6217: [Website] Remove needless _site/ directory

2019-08-12 Thread GitBox
kou opened a new pull request #10: ARROW-6217: [Website] Remove needless _site/ directory URL: https://github.com/apache/arrow-site/pull/10 This is an automated message from the Apache Git Service. To respond to the

[GitHub] [arrow-site] kou commented on issue #9: ARROW-4473: [Website] Support test site deployment (take 2)

2019-08-12 Thread GitBox
kou commented on issue #9: ARROW-4473: [Website] Support test site deployment (take 2) URL: https://github.com/apache/arrow-site/pull/9#issuecomment-520629972 I've created #10 to remove needless `_site/` directory. We merge it then we can confirm diff for this change.

[GitHub] [arrow-site] nealrichardson commented on issue #9: ARROW-4473: [Website] Support test site deployment (take 2)

2019-08-12 Thread GitBox
nealrichardson commented on issue #9: ARROW-4473: [Website] Support test site deployment (take 2) URL: https://github.com/apache/arrow-site/pull/9#issuecomment-520609697 I suspect those duplicate (stale) blog posts are from before the timezone was hardcoded

[GitHub] [arrow-site] nealrichardson commented on issue #9: ARROW-4473: [Website] Support test site deployment (take 2)

2019-08-12 Thread GitBox
nealrichardson commented on issue #9: ARROW-4473: [Website] Support test site deployment (take 2) URL: https://github.com/apache/arrow-site/pull/9#issuecomment-520634784  fine, you can have the -2,000,000 line diff :P FTR http://arrow.apache.org/_site/ does exist and shows a

[GitHub] [arrow-site] nealrichardson commented on issue #10: ARROW-6217: [Website] Remove needless _site/ directory

2019-08-12 Thread GitBox
nealrichardson commented on issue #10: ARROW-6217: [Website] Remove needless _site/ directory URL: https://github.com/apache/arrow-site/pull/10#issuecomment-520634975 +1 from me FWIW. https://github.com/apache/arrow-site/commit/99f824603cc862d3cef2eb6bad5a89aadd929951 is the commit that

[GitHub] [arrow-site] nealrichardson commented on issue #7: ARROW-6139: [Documentation][R] Build R docs (pkgdown) site and add to arrow-site

2019-08-14 Thread GitBox
nealrichardson commented on issue #7: ARROW-6139: [Documentation][R] Build R docs (pkgdown) site and add to arrow-site URL: https://github.com/apache/arrow-site/pull/7#issuecomment-521335374 This has been revised to build the CRAN published 0.14.1.1 package, and it removes all changes

[GitHub] [arrow-site] wesm merged pull request #7: ARROW-6139: [Documentation][R] Build R docs (pkgdown) site and add to arrow-site

2019-08-14 Thread GitBox
wesm merged pull request #7: ARROW-6139: [Documentation][R] Build R docs (pkgdown) site and add to arrow-site URL: https://github.com/apache/arrow-site/pull/7 This is an automated message from the Apache Git Service. To

[GitHub] [arrow-site] wesm commented on issue #7: ARROW-6139: [Documentation][R] Build R docs (pkgdown) site and add to arrow-site

2019-08-14 Thread GitBox
wesm commented on issue #7: ARROW-6139: [Documentation][R] Build R docs (pkgdown) site and add to arrow-site URL: https://github.com/apache/arrow-site/pull/7#issuecomment-521335846 Thanks! This is an automated message from

[GitHub] [arrow-site] wesm closed pull request #15: Create README.md

2019-08-21 Thread GitBox
wesm closed pull request #15: Create README.md URL: https://github.com/apache/arrow-site/pull/15 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL

[GitHub] [arrow-site] wesm commented on issue #15: Create README.md

2019-08-21 Thread GitBox
wesm commented on issue #15: Create README.md URL: https://github.com/apache/arrow-site/pull/15#issuecomment-523662542 This branch is only for publishing the website. There is a README already at https://github.com/apache/arrow-site/tree/master see also

[GitHub] [arrow-site] nealrichardson opened a new pull request #16: ARROW-6260: [Website] Use deploy key on Travis to build and push to asf-site

2019-08-21 Thread GitBox
nealrichardson opened a new pull request #16: ARROW-6260: [Website] Use deploy key on Travis to build and push to asf-site URL: https://github.com/apache/arrow-site/pull/16 This change enables the use of [GitHub deploy

[GitHub] [arrow-site] kou commented on a change in pull request #16: ARROW-6260: [Website] Use deploy key on Travis to build and push to asf-site

2019-08-21 Thread GitBox
kou commented on a change in pull request #16: ARROW-6260: [Website] Use deploy key on Travis to build and push to asf-site URL: https://github.com/apache/arrow-site/pull/16#discussion_r316460102 ## File path: build-and-deploy.sh ## @@ -3,13 +3,25 @@ set -ev if [

[GitHub] [arrow-site] fsaintjacques merged pull request #14: Fix PR link on powered_by page in source

2019-08-21 Thread GitBox
fsaintjacques merged pull request #14: Fix PR link on powered_by page in source URL: https://github.com/apache/arrow-site/pull/14 This is an automated message from the Apache Git Service. To respond to the message, please

[GitHub] [arrow-site] RandomFractals opened a new pull request #15: Create README.md

2019-08-21 Thread GitBox
RandomFractals opened a new pull request #15: Create README.md URL: https://github.com/apache/arrow-site/pull/15 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub

[GitHub] [arrow-site] nealrichardson opened a new pull request #14: Fix PR link on powered_by page in source

2019-08-21 Thread GitBox
nealrichardson opened a new pull request #14: Fix PR link on powered_by page in source URL: https://github.com/apache/arrow-site/pull/14 See https://github.com/apache/arrow/issues/5156 and https://github.com/apache/arrow-site/pull/13

[GitHub] [arrow-site] nealrichardson opened a new pull request #12: ARROW-6225: [Website] Update arrow-site/README and any other places to point website contributors in right direction

2019-08-20 Thread GitBox
nealrichardson opened a new pull request #12: ARROW-6225: [Website] Update arrow-site/README and any other places to point website contributors in right direction URL: https://github.com/apache/arrow-site/pull/12 This is publishing the latest changes to the website (since we don't have

[GitHub] [arrow-site] kou commented on a change in pull request #16: ARROW-6260: [Website] Use deploy key on Travis to build and push to asf-site

2019-08-21 Thread GitBox
kou commented on a change in pull request #16: ARROW-6260: [Website] Use deploy key on Travis to build and push to asf-site URL: https://github.com/apache/arrow-site/pull/16#discussion_r316479684 ## File path: build-and-deploy.sh ## @@ -35,7 +35,22 @@ if [

[GitHub] [arrow-site] nealrichardson commented on a change in pull request #16: ARROW-6260: [Website] Use deploy key on Travis to build and push to asf-site

2019-08-21 Thread GitBox
nealrichardson commented on a change in pull request #16: ARROW-6260: [Website] Use deploy key on Travis to build and push to asf-site URL: https://github.com/apache/arrow-site/pull/16#discussion_r316486584 ## File path: build-and-deploy.sh ## @@ -35,7 +35,18 @@ if [

[GitHub] [arrow-site] nealrichardson commented on a change in pull request #16: ARROW-6260: [Website] Use deploy key on Travis to build and push to asf-site

2019-08-21 Thread GitBox
nealrichardson commented on a change in pull request #16: ARROW-6260: [Website] Use deploy key on Travis to build and push to asf-site URL: https://github.com/apache/arrow-site/pull/16#discussion_r316489942 ## File path: build-and-deploy.sh ## @@ -35,7 +35,18 @@ if [

[GitHub] [arrow-site] kou merged pull request #16: ARROW-6260: [Website] Use deploy key on Travis to build and push to asf-site

2019-08-21 Thread GitBox
kou merged pull request #16: ARROW-6260: [Website] Use deploy key on Travis to build and push to asf-site URL: https://github.com/apache/arrow-site/pull/16 This is an automated message from the Apache Git Service. To

[GitHub] [arrow-site] kou commented on a change in pull request #16: ARROW-6260: [Website] Use deploy key on Travis to build and push to asf-site

2019-08-21 Thread GitBox
kou commented on a change in pull request #16: ARROW-6260: [Website] Use deploy key on Travis to build and push to asf-site URL: https://github.com/apache/arrow-site/pull/16#discussion_r316489518 ## File path: build-and-deploy.sh ## @@ -35,7 +35,18 @@ if [

[GitHub] [arrow-site] nealrichardson commented on a change in pull request #16: ARROW-6260: [Website] Use deploy key on Travis to build and push to asf-site

2019-08-21 Thread GitBox
nealrichardson commented on a change in pull request #16: ARROW-6260: [Website] Use deploy key on Travis to build and push to asf-site URL: https://github.com/apache/arrow-site/pull/16#discussion_r316482335 ## File path: build-and-deploy.sh ## @@ -35,7 +35,22 @@ if [

[GitHub] [arrow-site] kou commented on a change in pull request #16: ARROW-6260: [Website] Use deploy key on Travis to build and push to asf-site

2019-08-21 Thread GitBox
kou commented on a change in pull request #16: ARROW-6260: [Website] Use deploy key on Travis to build and push to asf-site URL: https://github.com/apache/arrow-site/pull/16#discussion_r316484106 ## File path: build-and-deploy.sh ## @@ -35,7 +35,18 @@ if [

[GitHub] [arrow-site] nealrichardson commented on a change in pull request #16: ARROW-6260: [Website] Use deploy key on Travis to build and push to asf-site

2019-08-21 Thread GitBox
nealrichardson commented on a change in pull request #16: ARROW-6260: [Website] Use deploy key on Travis to build and push to asf-site URL: https://github.com/apache/arrow-site/pull/16#discussion_r316477513 ## File path: build-and-deploy.sh ## @@ -3,13 +3,25 @@ set -ev

[GitHub] [arrow-site] nealrichardson commented on a change in pull request #16: ARROW-6260: [Website] Use deploy key on Travis to build and push to asf-site

2019-08-21 Thread GitBox
nealrichardson commented on a change in pull request #16: ARROW-6260: [Website] Use deploy key on Travis to build and push to asf-site URL: https://github.com/apache/arrow-site/pull/16#discussion_r316486127 ## File path: build-and-deploy.sh ## @@ -35,7 +35,18 @@ if [

[GitHub] [arrow-site] RandomFractals commented on issue #15: Create README.md

2019-08-22 Thread GitBox
RandomFractals commented on issue #15: Create README.md URL: https://github.com/apache/arrow-site/pull/15#issuecomment-523818984 There was no README.md there yesterday :) Thanks for addressing it in that jira ticket and master branch!

[GitHub] [arrow-site] RandomFractals opened a new pull request #17: Updated powered-by.md to include Data Preview 

2019-08-22 Thread GitBox
RandomFractals opened a new pull request #17: Updated powered-by.md to include Data Preview  URL: https://github.com/apache/arrow-site/pull/17 Resolves https://github.com/RandomFractals/vscode-data-preview/issues/139 This

[GitHub] [arrow-site] saintstack commented on a change in pull request #18: Update committer/PMC roster. Move a couple people to Emeritus status

2019-08-27 Thread GitBox
saintstack commented on a change in pull request #18: Update committer/PMC roster. Move a couple people to Emeritus status URL: https://github.com/apache/arrow-site/pull/18#discussion_r318292197 ## File path: committers.html ## @@ -18,24 +18,12 @@ Committers Dremio

[GitHub] [arrow-site] wesm opened a new pull request #18: Update committer/PMC roster. Move a couple people to Emeritus status

2019-08-27 Thread GitBox
wesm opened a new pull request #18: Update committer/PMC roster. Move a couple people to Emeritus status URL: https://github.com/apache/arrow-site/pull/18 A couple of inactive PMC members have requested to be moved to Emeritus status. They can always be restored to PMC status at a later

[GitHub] [arrow-site] RandomFractals commented on issue #17: Updated powered-by.md to include Data Preview 

2019-08-27 Thread GitBox
RandomFractals commented on issue #17: Updated powered-by.md to include Data Preview  URL: https://github.com/apache/arrow-site/pull/17#issuecomment-525516786 Hi! Please let me know if there is anything outstanding I need to do for you to accept this powered-by.md PR. I've tried

[GitHub] [arrow-site] wesm merged pull request #18: Update committer/PMC roster. Move a couple people to Emeritus status

2019-08-27 Thread GitBox
wesm merged pull request #18: Update committer/PMC roster. Move a couple people to Emeritus status URL: https://github.com/apache/arrow-site/pull/18 This is an automated message from the Apache Git Service. To respond to

[GitHub] [arrow-site] wesm merged pull request #17: Updated powered-by.md to include Data Preview 

2019-08-27 Thread GitBox
wesm merged pull request #17: Updated powered-by.md to include Data Preview  URL: https://github.com/apache/arrow-site/pull/17 This is an automated message from the Apache Git Service. To respond to the message, please log

[GitHub] [arrow-site] RandomFractals commented on issue #17: Updated powered-by.md to include Data Preview 

2019-08-27 Thread GitBox
RandomFractals commented on issue #17: Updated powered-by.md to include Data Preview  URL: https://github.com/apache/arrow-site/pull/17#issuecomment-525517650 thank you @wesm This is an automated message from the Apache

[GitHub] [arrow-site] RandomFractals commented on issue #18: Update committer/PMC roster. Move a couple people to Emeritus status

2019-08-27 Thread GitBox
RandomFractals commented on issue #18: Update committer/PMC roster. Move a couple people to Emeritus status URL: https://github.com/apache/arrow-site/pull/18#issuecomment-525494883 hi guys! I could use your prompt attention to this PR too. thanks in advance!

[GitHub] [arrow-site] wesm opened a new pull request #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15

2019-09-02 Thread GitBox
wesm opened a new pull request #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15 URL: https://github.com/apache/arrow-site/pull/19 The dates will need to be changed for the actual publication date.

[GitHub] [arrow-site] wesm commented on issue #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15

2019-09-02 Thread GitBox
wesm commented on issue #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15 URL: https://github.com/apache/arrow-site/pull/19#issuecomment-527286878 cc @hatemhelal @xhochy for any review. Note that we have dropped BinaryArray read

[GitHub] [arrow-site] wesm commented on issue #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15

2019-09-02 Thread GitBox
wesm commented on issue #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15 URL: https://github.com/apache/arrow-site/pull/19#issuecomment-527287458 In light of the mixed performance results the post might need a new title to reframe around

[GitHub] [arrow-site] wesm commented on a change in pull request #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15

2019-09-03 Thread GitBox
wesm commented on a change in pull request #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15 URL: https://github.com/apache/arrow-site/pull/19#discussion_r320453511 ## File path: _posts/2019-09-03-faster-strings-cpp-parquet.md

[GitHub] [arrow-site] nealrichardson commented on a change in pull request #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15

2019-09-03 Thread GitBox
nealrichardson commented on a change in pull request #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15 URL: https://github.com/apache/arrow-site/pull/19#discussion_r320429697 ## File path:

[GitHub] [arrow-site] nealrichardson commented on a change in pull request #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15

2019-09-03 Thread GitBox
nealrichardson commented on a change in pull request #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15 URL: https://github.com/apache/arrow-site/pull/19#discussion_r320430467 ## File path:

[GitHub] [arrow-site] nealrichardson commented on a change in pull request #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15

2019-09-03 Thread GitBox
nealrichardson commented on a change in pull request #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15 URL: https://github.com/apache/arrow-site/pull/19#discussion_r320433177 ## File path:

[GitHub] [arrow-site] nealrichardson commented on a change in pull request #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15

2019-09-03 Thread GitBox
nealrichardson commented on a change in pull request #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15 URL: https://github.com/apache/arrow-site/pull/19#discussion_r320432915 ## File path:

[GitHub] [arrow-site] nealrichardson commented on a change in pull request #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15

2019-09-03 Thread GitBox
nealrichardson commented on a change in pull request #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15 URL: https://github.com/apache/arrow-site/pull/19#discussion_r320432044 ## File path:

[GitHub] [arrow-site] nealrichardson commented on a change in pull request #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15

2019-09-03 Thread GitBox
nealrichardson commented on a change in pull request #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15 URL: https://github.com/apache/arrow-site/pull/19#discussion_r320430931 ## File path:

[GitHub] [arrow-site] nealrichardson commented on a change in pull request #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15

2019-09-03 Thread GitBox
nealrichardson commented on a change in pull request #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15 URL: https://github.com/apache/arrow-site/pull/19#discussion_r320431812 ## File path:

[GitHub] [arrow-site] nealrichardson commented on a change in pull request #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15

2019-09-03 Thread GitBox
nealrichardson commented on a change in pull request #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15 URL: https://github.com/apache/arrow-site/pull/19#discussion_r320430285 ## File path:

[GitHub] [arrow-site] nealrichardson commented on a change in pull request #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15

2019-09-03 Thread GitBox
nealrichardson commented on a change in pull request #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15 URL: https://github.com/apache/arrow-site/pull/19#discussion_r320432165 ## File path:

[GitHub] [arrow-site] nealrichardson commented on a change in pull request #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15

2019-09-03 Thread GitBox
nealrichardson commented on a change in pull request #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15 URL: https://github.com/apache/arrow-site/pull/19#discussion_r320429352 ## File path:

[GitHub] [arrow-site] nealrichardson commented on a change in pull request #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15

2019-09-03 Thread GitBox
nealrichardson commented on a change in pull request #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15 URL: https://github.com/apache/arrow-site/pull/19#discussion_r320431254 ## File path:

[GitHub] [arrow-site] wesm commented on a change in pull request #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15

2019-09-03 Thread GitBox
wesm commented on a change in pull request #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15 URL: https://github.com/apache/arrow-site/pull/19#discussion_r320453000 ## File path: _posts/2019-09-03-faster-strings-cpp-parquet.md

[GitHub] [arrow-site] kou merged pull request #12: ARROW-6225: [Website] Update arrow-site/README and any other places to point website contributors in right direction

2019-08-21 Thread GitBox
kou merged pull request #12: ARROW-6225: [Website] Update arrow-site/README and any other places to point website contributors in right direction URL: https://github.com/apache/arrow-site/pull/12 This is an automated

[GitHub] [arrow-site] wesm merged pull request #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15

2019-09-05 Thread GitBox
wesm merged pull request #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15 URL: https://github.com/apache/arrow-site/pull/19 This is an automated message from the Apache Git

[GitHub] [arrow-site] wesm commented on a change in pull request #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15

2019-09-05 Thread GitBox
wesm commented on a change in pull request #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15 URL: https://github.com/apache/arrow-site/pull/19#discussion_r321321708 ## File path: _posts/2019-09-03-faster-strings-cpp-parquet.md

[GitHub] [arrow-site] wesm commented on issue #17: Updated powered-by.md to include Data Preview 

2019-09-05 Thread GitBox
wesm commented on issue #17: Updated powered-by.md to include Data Preview  URL: https://github.com/apache/arrow-site/pull/17#issuecomment-528422201 Next site update This is an automated message from the Apache Git Service.

[GitHub] [arrow-site] RandomFractals commented on issue #17: Updated powered-by.md to include Data Preview 

2019-09-05 Thread GitBox
RandomFractals commented on issue #17: Updated powered-by.md to include Data Preview  URL: https://github.com/apache/arrow-site/pull/17#issuecomment-528421046 @wesm & this site maintainers: I still don't see this addition on your powered by site:

[GitHub] [arrow-site] hatemhelal commented on a change in pull request #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15

2019-09-05 Thread GitBox
hatemhelal commented on a change in pull request #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15 URL: https://github.com/apache/arrow-site/pull/19#discussion_r321296155 ## File path: _posts/2019-09-03-faster-strings-cpp-parquet.md

[GitHub] [arrow-site] hatemhelal commented on a change in pull request #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15

2019-09-05 Thread GitBox
hatemhelal commented on a change in pull request #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15 URL: https://github.com/apache/arrow-site/pull/19#discussion_r321294831 ## File path: _posts/2019-09-03-faster-strings-cpp-parquet.md

[GitHub] [arrow-site] hatemhelal commented on a change in pull request #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15

2019-09-05 Thread GitBox
hatemhelal commented on a change in pull request #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15 URL: https://github.com/apache/arrow-site/pull/19#discussion_r321301937 ## File path: _posts/2019-09-03-faster-strings-cpp-parquet.md

[GitHub] [arrow-site] hatemhelal commented on a change in pull request #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15

2019-09-05 Thread GitBox
hatemhelal commented on a change in pull request #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15 URL: https://github.com/apache/arrow-site/pull/19#discussion_r321296528 ## File path: _posts/2019-09-03-faster-strings-cpp-parquet.md

[GitHub] [arrow-site] hatemhelal commented on a change in pull request #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15

2019-09-05 Thread GitBox
hatemhelal commented on a change in pull request #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15 URL: https://github.com/apache/arrow-site/pull/19#discussion_r321242756 ## File path: _posts/2019-09-03-faster-strings-cpp-parquet.md

[GitHub] [arrow-site] hatemhelal commented on a change in pull request #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15

2019-09-05 Thread GitBox
hatemhelal commented on a change in pull request #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15 URL: https://github.com/apache/arrow-site/pull/19#discussion_r321302667 ## File path: _posts/2019-09-03-faster-strings-cpp-parquet.md

[GitHub] [arrow-site] hatemhelal commented on a change in pull request #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15

2019-09-05 Thread GitBox
hatemhelal commented on a change in pull request #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15 URL: https://github.com/apache/arrow-site/pull/19#discussion_r321303184 ## File path: _posts/2019-09-03-faster-strings-cpp-parquet.md

[GitHub] [arrow-site] wesm commented on issue #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15

2019-09-04 Thread GitBox
wesm commented on issue #19: ARROW-6419: [Website] Blog post about Parquet C++ read performance improvements in Arrow 0.15 URL: https://github.com/apache/arrow-site/pull/19#issuecomment-528024557 I'll address the comments and update the benchmark results with ARROW-6417 taken into account

[GitHub] [arrow-site] kou commented on issue #21: ARROW-6497: [Website] On change to master branch, automatically make PR to asf-site

2019-09-11 Thread GitBox
kou commented on issue #21: ARROW-6497: [Website] On change to master branch, automatically make PR to asf-site URL: https://github.com/apache/arrow-site/pull/21#issuecomment-530261322 I don't try it yet but we may be able to use GitHub Actions and the default `GITHUB_TOKEN` in GitHub

[GitHub] [arrow-site] wesm merged pull request #22: ARROW-6505: [Website] Add new committers

2019-09-10 Thread GitBox
wesm merged pull request #22: ARROW-6505: [Website] Add new committers URL: https://github.com/apache/arrow-site/pull/22 This is an automated message from the Apache Git Service. To respond to the message, please log on to

[GitHub] [arrow-site] wesm commented on issue #22: ARROW-6505: [Website] Add new committers

2019-09-10 Thread GitBox
wesm commented on issue #22: ARROW-6505: [Website] Add new committers URL: https://github.com/apache/arrow-site/pull/22#issuecomment-529949292 I added the missing affiliations. +1 This is an automated message from the Apache

[GitHub] [arrow-site] mrkn commented on issue #22: ARROW-6505: [Website] Add new committers

2019-09-10 Thread GitBox
mrkn commented on issue #22: ARROW-6505: [Website] Add new committers URL: https://github.com/apache/arrow-site/pull/22#issuecomment-529980970 Thanks, @wesm! This is an automated message from the Apache Git Service. To

[GitHub] [arrow-site] mrkn commented on a change in pull request #22: Add new committers

2019-09-10 Thread GitBox
mrkn commented on a change in pull request #22: Add new committers URL: https://github.com/apache/arrow-site/pull/22#discussion_r322564482 ## File path: committers.html ## @@ -251,6 +251,24 @@ Committers TBD Dremio + +Ben Kietzman +Committer +bkietz + + + +Kenta Murata

[GitHub] [arrow-site] mrkn opened a new pull request #22: Add new committers

2019-09-10 Thread GitBox
mrkn opened a new pull request #22: Add new committers URL: https://github.com/apache/arrow-site/pull/22 I'd like to add new committers on the list. This is an automated message from the Apache Git Service. To respond to the

[GitHub] [arrow-site] mrkn commented on a change in pull request #22: Add new committers

2019-09-10 Thread GitBox
mrkn commented on a change in pull request #22: Add new committers URL: https://github.com/apache/arrow-site/pull/22#discussion_r322564323 ## File path: committers.html ## @@ -251,6 +251,24 @@ Committers TBD Dremio + +Ben Kietzman +Committer +bkietz + Review

[GitHub] [arrow-site] nealrichardson commented on issue #24: ARROW-6569: [Website] Add support for auto deployment by GitHub Actions

2019-09-16 Thread GitBox
nealrichardson commented on issue #24: ARROW-6569: [Website] Add support for auto deployment by GitHub Actions URL: https://github.com/apache/arrow-site/pull/24#issuecomment-531883882 https://kou.github.io/arrow-site/ works for me (now) so maybe whatever the problem was is fixed?

[GitHub] [arrow-site] kou commented on issue #24: ARROW-6569: [Website] Add support for auto deployment by GitHub Actions

2019-09-16 Thread GitBox
kou commented on issue #24: ARROW-6569: [Website] Add support for auto deployment by GitHub Actions URL: https://github.com/apache/arrow-site/pull/24#issuecomment-531973905 I've removed all automatic deployment document from README. Because we don't need to do nothing. This GitHub

[GitHub] [arrow-site] wesm commented on issue #24: ARROW-6569: [Website] Add support for auto deployment by GitHub Actions

2019-09-16 Thread GitBox
wesm commented on issue #24: ARROW-6569: [Website] Add support for auto deployment by GitHub Actions URL: https://github.com/apache/arrow-site/pull/24#issuecomment-531951936 @nealrichardson it appears that GitHub Actions may allow us to benefit from the capabilities of Azure Devops

[GitHub] [arrow-site] kou commented on a change in pull request #23: ARROW-6127: [Website] Add favicons and meta tags

2019-09-14 Thread GitBox
kou commented on a change in pull request #23: ARROW-6127: [Website] Add favicons and meta tags URL: https://github.com/apache/arrow-site/pull/23#discussion_r324439945 ## File path: .gitignore ## @@ -8,3 +8,4 @@ build/ .bundle/ ruby/ .DS_Store +themes/ Review

[GitHub] [arrow-site] kou commented on a change in pull request #23: ARROW-6127: [Website] Add favicons and meta tags

2019-09-14 Thread GitBox
kou commented on a change in pull request #23: ARROW-6127: [Website] Add favicons and meta tags URL: https://github.com/apache/arrow-site/pull/23#discussion_r324440167 ## File path: build-and-deploy.sh ## @@ -28,7 +28,13 @@ if [ "${TRAVIS_BRANCH}" = "master" ] && [

  1   2   3   4   5   6   7   8   9   10   >