-
Notifications
You must be signed in to change notification settings - Fork 97
/
AWSSchemaRegistryConstants.java
219 lines (207 loc) · 6.49 KB
/
AWSSchemaRegistryConstants.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
/*
* Copyright 2020 Amazon.com, Inc. or its affiliates.
* Licensed under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.amazonaws.services.schemaregistry.utils;
import software.amazon.awssdk.services.glue.model.Compatibility;
public final class AWSSchemaRegistryConstants {
/**
* Proxy URL to use while connecting to AWS endpoint.
*/
public static final String PROXY_URL = "proxyUrl";
/**
* AWS endpoint to use while initializing the client for service.
*/
public static final String AWS_ENDPOINT = "endpoint";
/**
* AWS region to use while initializing the client for service.
*/
public static final String AWS_REGION = "region";
/**
* Header Version Byte.
*/
public static final byte HEADER_VERSION_BYTE = (byte) 3;
/**
* Check for compression.
*/
public static final String COMPRESSION_TYPE = "compression";
/**
* Compression byte.
*/
public static final byte COMPRESSION_BYTE = (byte) 5;
/**
* Compression byte default when compression is not enabled.
*/
public static final byte COMPRESSION_DEFAULT_BYTE = (byte) 0;
/**
* Header Version byte.
*/
public static final int HEADER_VERSION_BYTE_SIZE = 1;
/**
* Compression byte.
*/
public static final int COMPRESSION_BYTE_SIZE = 1;
/**
* * A buffer is allocated for the serialized message. A header of 18 bytes is
* written. * Byte 0 is an 8 bit version number * Byte 1 is the compression *
* Byte 2-17 is a 128 bit UUID representing the schema-version-id
*/
/**
* Schema Byte Size.
*/
public static final int SCHEMA_VERSION_ID_SIZE = 16;
/**
* Schema name.
*/
public static final String SCHEMA_NAME = "schemaName";
/**
* Schema Generation Class.
*/
public static final String SCHEMA_NAMING_GENERATION_CLASS = "schemaNameGenerationClass";
/**
* Default schema strategy class.
*/
public static final String DEFAULT_SCHEMA_STRATEGY = "AWSSchemaNamingStrategyDefaultImpl";
/**
* Data format.
*/
public static final String DATA_FORMAT = "dataFormat";
/**
* Cache time to live.
*/
public static final String CACHE_TIME_TO_LIVE_MILLIS = "timeToLiveMillis";
/**
* Cache Size.
*/
public static final String CACHE_SIZE = "cacheSize";
/**
* AVRO record type.
*/
public static final String AVRO_RECORD_TYPE = "avroRecordType";
/**
* Protobuf Message type.
*/
public static final String PROTOBUF_MESSAGE_TYPE = "protobufMessageType";
/**
* Registry Name.
*/
public static final String REGISTRY_NAME = "registry.name";
/**
* Default registry name if not passed by the client.
*/
public static final String DEFAULT_REGISTRY_NAME = "default-registry";
/**
* Compatibility setting, will be helpful at the time of schema evolution.
*/
public static final String COMPATIBILITY_SETTING = "compatibility";
/**
* Description about the process.
*/
public static final String DESCRIPTION = "description";
/**
* Default Compatibility setting if not passed by the client.
*/
public static final Compatibility DEFAULT_COMPATIBILITY_SETTING = Compatibility.BACKWARD;
/**
* Secondary deserializer class name, which will be initialized by the
* deserializer, if client passes and will be used if magic bytes does not
* belong to AWS.
*/
public static final String SECONDARY_DESERIALIZER = "secondaryDeserializer";
/**
* Schema version Id not found.
*/
public static final String SCHEMA_VERSION_NOT_FOUND_MSG = "Schema version is not found.";
/**
* Tags config value is not a instance of HashMap
*/
public static final String TAGS_CONFIG_NOT_HASHMAP_MSG = "The tag config is not a instance of HashMap.";
/**
* Schema not found.
*/
public static final String SCHEMA_NOT_FOUND_MSG = "Schema is not found.";
/**
* Auto registration is disabled
*/
public static final String AUTO_REGISTRATION_IS_DISABLED_MSG =
"Failed to auto-register schema. Auto registration of schema is not enabled.";
/**
* Config to allow auto registrations of Schema.
*/
public static final String SCHEMA_AUTO_REGISTRATION_SETTING = "schemaAutoRegistrationEnabled";
/**
* Tags for schema and registry.
*/
public static final String TAGS = "tags";
/**
* Metadata.
*/
public static final String METADATA = "metadata";
/**
* Default transport name metadata key.
*/
public static final String TRANSPORT_METADATA_KEY = "x-amz-meta-transport";
/**
* Jackson serialization features.
*/
public static final String JACKSON_SERIALIZATION_FEATURES = "jacksonSerializationFeatures";
/**
* Jackson deserialization features.
*/
public static final String JACKSON_DESERIALIZATION_FEATURES = "jacksonDeserializationFeatures";
/**
* Name of the UserAgent application using the serializer/de-serializer library.
* Ex: KPL, Kafka, KafkaConnect etc.
*/
public static final String USER_AGENT_APP = "userAgentApp";
/**
* Private constructor to avoid initialization of the class.
*/
/**
* Private constructor to avoid initialization of the class.
*/
private AWSSchemaRegistryConstants() {
}
/**
* Enums for the back end job, responsible for fetching schema version Id corresponding
* to task id.
*/
public enum SchemaVersionStatus {
/**
* Job successfully completed.
*/
AVAILABLE,
/**
* Job still running.
*/
PENDING,
/**
* Schema evolution failed
*/
FAILURE,
/**
* Job still running.
*/
DELETING
}
public enum COMPRESSION {
/**
* default no compression.
*/
NONE,
/**
* ZLIB compression.
*/
ZLIB
}
}