-
Notifications
You must be signed in to change notification settings - Fork 34
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
All backends support with etl refactor #23
Merged
echeipesh
merged 10 commits into
geotrellis:master
from
pomadchin:feature/json-etl-support
Aug 19, 2016
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
4783c64
+cassandra support
pomadchin 0c39f8a
+server support of all backends
pomadchin 9af79c1
json etl branch support
pomadchin 33e42df
move to master branch; added hbase support
pomadchin 80a42cf
README.md update
pomadchin 1f9dd24
fix spark confs
pomadchin 3820747
move to new geodocker
pomadchin fd16e64
expose server port
pomadchin ff9b47c
update readme docs
pomadchin 7cba587
fix deprecated metadata read
pomadchin File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
version: '2' | ||
services: | ||
hdfs-name: | ||
image: quay.io/geodocker/hdfs:latest | ||
command: name | ||
environment: | ||
HADOOP_MASTER_ADDRESS: hdfs-name | ||
ports: | ||
- 50070:50070 | ||
# volumes: | ||
# - '/data/gt/hdfs:/data/hdfs' | ||
hdfs-data: | ||
image: quay.io/geodocker/hdfs:latest | ||
command: data | ||
environment: | ||
HADOOP_MASTER_ADDRESS: hdfs-name | ||
depends_on: | ||
- hdfs-name | ||
# volumes: | ||
# - '/data/gt/hdfs:/data/hdfs' | ||
zookeeper: | ||
image: quay.io/geodocker/zookeeper:latest | ||
ports: | ||
- 2181:2181 | ||
# volumes: | ||
# - '/data/gt/hdfs:/data/hdfs' | ||
accumulo-master: | ||
image: quay.io/geodocker/accumulo:latest | ||
command: master --auto-init | ||
environment: | ||
HADOOP_MASTER_ADDRESS: hdfs-name | ||
ZOOKEEPERS: zookeeper | ||
ACCUMULO_PASSWORD: GisPwd | ||
depends_on: | ||
- zookeeper | ||
accumulo-monitor: | ||
image: quay.io/geodocker/accumulo:latest | ||
command: monitor | ||
environment: | ||
HADOOP_MASTER_ADDRESS: hdfs-name | ||
ZOOKEEPERS: zookeeper | ||
ports: | ||
- 50095:50095 | ||
depends_on: | ||
- zookeeper | ||
- accumulo-master | ||
accumulo-tserver: | ||
image: quay.io/geodocker/accumulo:latest | ||
command: tserver | ||
environment: | ||
HADOOP_MASTER_ADDRESS: hdfs-name | ||
ZOOKEEPERS: zookeeper | ||
depends_on: | ||
- zookeeper | ||
- accumulo-master | ||
spark-master: | ||
image: quay.io/geodocker/spark:latest | ||
command: master | ||
environment: | ||
HADOOP_MASTER_ADDRESS: hdfs-name | ||
ports: | ||
- 4040:4040 | ||
- 8080:8080 | ||
- 8777:8777 | ||
depends_on: | ||
- hdfs-data | ||
spark-worker: | ||
image: quay.io/geodocker/spark:latest | ||
command: worker | ||
environment: | ||
HADOOP_MASTER_ADDRESS: hdfs-name | ||
SPARK_MASTER: spark-master | ||
depends_on: | ||
- spark-master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"backend-profiles": [ | ||
{ | ||
"name": "accumulo-local", | ||
"type": "accumulo", | ||
"zookeepers": "localhost", | ||
"instance": "gis", | ||
"user": "root", | ||
"password": "secret" | ||
}, | ||
{ | ||
"name": "cassandra-local", | ||
"type": "cassandra", | ||
"allowRemoteDCsForLocalConsistencyLevel": false, | ||
"localDc": "datacenter1", | ||
"usedHostsPerRemoteDc": 0, | ||
"hosts": "localhost", | ||
"replicationStrategy": "SimpleStrategy", | ||
"replicationFactor": 1, | ||
"user": "", | ||
"password": "" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
[ | ||
{ | ||
"name": "DevelopedLand", | ||
"format": "geotiff", | ||
"backend": { | ||
"type": "hadoop", | ||
"path": "file:///data/arg_wm/DevelopedLand.tiff" | ||
}, | ||
"cache": "NONE" | ||
}, | ||
{ | ||
"name": "ExampleOfWeightedSumOutput", | ||
"format": "geotiff", | ||
"backend": { | ||
"type": "hadoop", | ||
"path": "file:///data/arg_wm/ExampleOfWeightedSumOutput.tiff" | ||
}, | ||
"cache": "NONE" | ||
}, | ||
{ | ||
"name": "FarmlandOrForestedLandsWithPrimeAgriculturalSoils", | ||
"format": "geotiff", | ||
"backend": { | ||
"type": "hadoop", | ||
"path": "file:///data/arg_wm/FarmlandOrForestedLandsWithPrimeAgriculturalSoils.tiff" | ||
}, | ||
"cache": "NONE" | ||
}, | ||
{ | ||
"name": "FarmlandWithoutPrimeAgriculturalSoils", | ||
"format": "geotiff", | ||
"backend": { | ||
"type": "hadoop", | ||
"path": "file:///data/arg_wm/FarmlandWithoutPrimeAgriculturalSoils.tiff" | ||
}, | ||
"cache": "NONE" | ||
}, | ||
{ | ||
"name": "ForestedLands", | ||
"format": "geotiff", | ||
"backend": { | ||
"type": "hadoop", | ||
"path": "file:///data/arg_wm/ForestedLands.tiff" | ||
}, | ||
"cache": "NONE" | ||
}, | ||
{ | ||
"name": "ImperviousSurfacesBarrenLandsOpenWater", | ||
"format": "geotiff", | ||
"backend": { | ||
"type": "hadoop", | ||
"path": "file:///data/arg_wm/ImperviousSurfacesBarrenLandsOpenWater.tiff" | ||
}, | ||
"cache": "NONE" | ||
}, | ||
{ | ||
"name": "NonWorkingProtectedOrPublicLands", | ||
"format": "geotiff", | ||
"backend": { | ||
"type": "hadoop", | ||
"path": "file:///data/arg_wm/NonWorkingProtectedOrPublicLands.tiff" | ||
}, | ||
"cache": "NONE" | ||
}, | ||
{ | ||
"name": "PrimeAgriculturalSoilsNotForestedOrFarmland", | ||
"format": "geotiff", | ||
"backend": { | ||
"type": "hadoop", | ||
"path": "file:///data/arg_wm/PrimeAgriculturalSoilsNotForestedOrFarmland.tiff" | ||
}, | ||
"cache": "NONE" | ||
}, | ||
{ | ||
"name": "PrivatelyOwnedWorkingLandsWithEasements", | ||
"format": "geotiff", | ||
"backend": { | ||
"type": "hadoop", | ||
"path": "file:///data/arg_wm/PrivatelyOwnedWorkingLandsWithEasements.tiff" | ||
}, | ||
"cache": "NONE" | ||
}, | ||
{ | ||
"name": "PublicallyOwnedWorkingLands", | ||
"format": "geotiff", | ||
"backend": { | ||
"type": "hadoop", | ||
"path": "file:///data/arg_wm/PublicallyOwnedWorkingLands.tiff" | ||
}, | ||
"cache": "NONE" | ||
}, | ||
{ | ||
"name": "Wetlands", | ||
"format": "geotiff", | ||
"backend": { | ||
"type": "hadoop", | ||
"path": "file:///data/arg_wm/Wetlands.tiff" | ||
}, | ||
"cache": "NONE" | ||
}, | ||
{ | ||
"name": "mask", | ||
"format": "geotiff", | ||
"backend": { | ||
"type": "hadoop", | ||
"path": "file:///data/arg_wm/mask.tiff" | ||
}, | ||
"cache": "NONE" | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"backend": { | ||
"type": "accumulo", | ||
"path": "chattanooga", | ||
"profile": "accumulo-local" | ||
}, | ||
"reprojectMethod": "buffered", | ||
"cellSize": { | ||
"width": 256.0, | ||
"height": 256.0 | ||
}, | ||
"tileSize": 256, | ||
"pyramid": true, | ||
"resampleMethod": "nearest-neighbor", | ||
"keyIndexMethod": { | ||
"type": "zorder" | ||
}, | ||
"layoutScheme": "zoomed", | ||
"crs": "EPSG:3857" | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Now that ETL is in master we should at least refer to the SHA tag