Repository: sqoop
Updated Branches:
refs/heads/sqoop2 7ad7c2705 -> 2776f44eb
SQOOP-2877: Sqoop2: Enrich Kite Connector resource file
(Jarek Jarcec Cecho via Abraham Fine)
Project: http://git-wip-us.apache.org/repos/asf/sqoop/repo
Commit: http://git-wip-us.apache.org/repos/asf/sqoop/commit/2776f44e
Tree: http://git-wip-us.apache.org/repos/asf/sqoop/tree/2776f44e
Diff: http://git-wip-us.apache.org/repos/asf/sqoop/diff/2776f44e
Branch: refs/heads/sqoop2
Commit: 2776f44eb3a86e3b38a7e75156507338239eb7d7
Parents: 7ad7c27
Author: Abraham Fine <afine@apache.org>
Authored: Mon Mar 21 10:54:12 2016 -0700
Committer: Abraham Fine <afine@apache.org>
Committed: Mon Mar 21 10:54:12 2016 -0700
----------------------------------------------------------------------
.../resources/kite-connector-config.properties | 41 ++++++++------------
1 file changed, 17 insertions(+), 24 deletions(-)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/sqoop/blob/2776f44e/connector/connector-kite/src/main/resources/kite-connector-config.properties
----------------------------------------------------------------------
diff --git a/connector/connector-kite/src/main/resources/kite-connector-config.properties
b/connector/connector-kite/src/main/resources/kite-connector-config.properties
index f384f3d..2264ab8 100644
--- a/connector/connector-kite/src/main/resources/kite-connector-config.properties
+++ b/connector/connector-kite/src/main/resources/kite-connector-config.properties
@@ -13,42 +13,35 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-# Kite Connector Resources
+connector.name = Kite connector
-############################
-# Link Config
-#
-linkConfig.label = Link Configuration
-linkConfig.help = You must supply the information requested in order to create a \
- connection object.
+linkConfig.label = Global configuration
+linkConfig.help = Global configuration options that will be used for both from and to sides.
linkConfig.authority.label = HDFS host and port
+linkConfig.authority.example = namenode.sqoop.org:8020
linkConfig.authority.help = Optional to override HDFS file system location.
linkConfig.confDir.label = Hadoop conf directory
+linkConfig.confDir.example = /etc/hadoop/conf/
linkConfig.confDir.help = Directory with Hadoop configuration files. This directory will
be added to the classpath.
-# To Job Config
-#
-toJobConfig.label = To Kite Dataset Configuration
-toJobConfig.help = You must supply the information requested in order to \
- get information where you want to store your data.
+
+toJobConfig.label = Target configuration
+toJobConfig.help = Configuration options relevant to target dataset.
toJobConfig.uri.label = Dataset URI
-toJobConfig.uri.help = Location to store dataset (i.e. \
- "dataset:hdfs://<host>[:port]/<path>/<namespace>/<dataset>", \
- "dataset:hive://<namespace>/<dataset>")
+toJobConfig.uri.example = dataset:hdfs://namespace/table
+toJobConfig.uri.help = Kite Dataset URI where should be data written to.
toJobConfig.fileFormat.label = File format
-toJobConfig.fileFormat.help = Specify storage format to create a dataset and cannot be changed.
+toJobConfig.fileFormat.example = PARQUET
+toJobConfig.fileFormat.help = Storage format that should be used when creating new dataset.
-# From Job Config
-#
-fromJobConfig.label = From Kite Dataset Configuration
-fromJobConfig.help = You must supply the information requested in order to \
- get information where you want to store your data.
+
+fromJobConfig.label = Source configuration
+fromJobConfig.help = Configuration options relevant to source dataset.
fromJobConfig.uri.label = Dataset URI
-fromJobConfig.uri.help = Location to load dataset (i.e. \
- "dataset:hdfs://<host>[:port]/<path>/<namespace>/<dataset>", \
- "dataset:hive://<namespace>/<dataset>")
\ No newline at end of file
+fromJobConfig.uri.label = dataset:hdfs://namespace/table
+fromJobConfig.uri.help = Kite Dataset URI from which data will be read.
|