Skip to content

Commit 59db0f2

Browse files
author
Chris Li
committed
Document properties and categories
1 parent 5ed93ba commit 59db0f2

File tree

86 files changed

+2252
-375
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+2252
-375
lines changed

cdi-core/src/main/java/com/linkedin/cdi/configuration/MultistageProperties.java

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -302,12 +302,6 @@ public <T> T getDefaultValue() {
302302
return (T) Boolean.TRUE;
303303
}
304304
},
305-
MSTAGE_ENCODING("ms.encoding", String.class) {
306-
@Override
307-
public <T> T getDefaultValue() {
308-
return (T) "UTF-8";
309-
}
310-
},
311305
/**
312306
* extract.preprocessors define one or more preprocessor classes, see
313307
* {@link com.linkedin.cdi.preprocessor.GunzipProcessor}
@@ -654,15 +648,6 @@ public <T> T getDefaultValue() {
654648
* 3. other forms TODO
655649
*/
656650
MSTAGE_SOURCE_SCHEMA_URN("ms.source.schema.urn", String.class),
657-
/**
658-
* Define a factory parameter to decouple proprietary code from OpenSource code
659-
*/
660-
MSTAGE_SOURCE_SCHEMA_READER_FACTORY("ms.source.schema.reader.factory", String.class) {
661-
@Override
662-
public <T> T getDefaultValue() {
663-
return (T) "com.linkedin.cdi.factory.reader.MetastoreReader";
664-
}
665-
},
666651
/**
667652
* ms.source.uri defines a data source identifier, it follows the URI format
668653
* here: https://en.wikipedia.org/wiki/Uniform_Resource_Identifier
@@ -695,12 +680,6 @@ public <T> T getDefaultValue() {
695680
*/
696681
MSTAGE_TARGET_SCHEMA("ms.target.schema", JsonArray.class),
697682
MSTAGE_TARGET_SCHEMA_URN("ms.target.schema.urn", String.class),
698-
MSTAGE_TARGET_SCHEMA_READER_FACTORY("ms.target.schema.reader.factory", String.class) {
699-
@Override
700-
public <T> T getDefaultValue() {
701-
return (T) "com.linkedin.cdi.factory.reader.MetastoreReader";
702-
}
703-
},
704683
/**
705684
* Total count field is a Json path. This attribute can be used in many
706685
* types of connectors, typically with Json Extractor

cdi-core/src/main/java/com/linkedin/cdi/keys/JobKeys.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ public class JobKeys {
6767
MultistageProperties.MSTAGE_ENABLE_CLEANSING,
6868
MultistageProperties.MSTAGE_ENABLE_DYNAMIC_FULL_LOAD,
6969
MultistageProperties.MSTAGE_ENABLE_SCHEMA_BASED_FILTERING,
70-
MultistageProperties.MSTAGE_ENCODING,
7170
MultistageProperties.MSTAGE_ENCRYPTION_FIELDS,
7271
MultistageProperties.MSTAGE_GRACE_PERIOD_DAYS,
7372
MultistageProperties.MSTAGE_OUTPUT_SCHEMA,

cdi-core/src/test/java/com/linkedin/cdi/configuration/MultistagePropertiesTest.java

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -105,14 +105,6 @@ public void testGetDefaultValue5() {
105105
Assert.assertEquals(MultistageProperties.EXTRACT_IS_FULL.getDefaultValue(), (Boolean) false);
106106
}
107107

108-
/**
109-
* Test getDefaultValue for MSTAGE_ENDCODING
110-
*/
111-
@Test
112-
public void testGetDefaultValue6() {
113-
Assert.assertEquals(MultistageProperties.MSTAGE_ENCODING.getDefaultValue(), "UTF-8");
114-
}
115-
116108
/**
117109
* Test getDefaultValue
118110
*/

docs/components/FileDumpExtractor.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ms.extractor.target.file.permission
File renamed without changes.

docs/parameters/authentication-parameters.md

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)