Skip to content

Commit 415bd6a

Browse files
Merge pull request #253213 from jonburchel/patch-36
Update connector-troubleshoot-guide.md
2 parents b861be6 + 4620d10 commit 415bd6a

File tree

1 file changed

+27
-27
lines changed

1 file changed

+27
-27
lines changed

articles/data-factory/connector-troubleshoot-guide.md

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ You can refer to the troubleshooting pages for each connector to see problems sp
4343

4444
The errors below are general to the copy activity and could occur with any connector.
4545

46-
### Error code: JreNotFound
46+
#### Error code: JreNotFound
4747

4848
- **Message**: `Java Runtime Environment cannot be found on the Self-hosted Integration Runtime machine. It is required for parsing or writing to Parquet/ORC files. Make sure Java Runtime Environment has been installed on the Self-hosted Integration Runtime machine.`
4949

@@ -52,7 +52,7 @@ The errors below are general to the copy activity and could occur with any conne
5252
- **Recommendation**: Check your integration runtime environment, see [Use Self-hosted Integration Runtime](./format-parquet.md#using-self-hosted-integration-runtime).
5353

5454

55-
### Error code: WildcardPathSinkNotSupported
55+
#### Error code: WildcardPathSinkNotSupported
5656

5757
- **Message**: `Wildcard in path is not supported in sink dataset. Fix the path: '%setting;'.`
5858

@@ -79,53 +79,53 @@ The errors below are general to the copy activity and could occur with any conne
7979

8080
3. Save the file, and then restart the Self-hosted IR machine.
8181

82-
### Error code: JniException
82+
#### Error code: JniException
8383

8484
- **Message**: `An error occurred when invoking Java Native Interface.`
8585

8686
- **Cause**: If the error message contains "Cannot create JVM: JNI return code [-6][JNI call failed: Invalid arguments.]", the possible cause is that JVM can't be created because some illegal (global) arguments are set.
8787

8888
- **Recommendation**: Log in to the machine that hosts *each node* of your self-hosted integration runtime. Check to ensure that the system variable is set correctly, as follows: `_JAVA_OPTIONS "-Xms256m -Xmx16g" with memory bigger than 8G`. Restart all the integration runtime nodes, and then rerun the pipeline.
8989

90-
### Error code: GetOAuth2AccessTokenErrorResponse
90+
#### Error code: GetOAuth2AccessTokenErrorResponse
9191

9292
- **Message**: `Failed to get access token from your token endpoint. Error returned from your authorization server: %errorResponse;.`
9393

9494
- **Cause**: Your client ID or client secret is invalid, and the authentication failed in your authorization server.
9595

9696
- **Recommendation**: Correct all OAuth2 client credential flow settings of your authorization server.
9797

98-
### Error code: FailedToGetOAuth2AccessToken
98+
#### Error code: FailedToGetOAuth2AccessToken
9999

100100
- **Message**: `Failed to get access token from your token endpoint. Error message: %errorMessage;.`
101101

102102
- **Cause**: OAuth2 client credential flow settings are invalid.
103103

104104
- **Recommendation**: Correct all OAuth2 client credential flow settings of your authorization server.
105105

106-
### Error code: OAuth2AccessTokenTypeNotSupported
106+
#### Error code: OAuth2AccessTokenTypeNotSupported
107107

108108
- **Message**: `The toke type '%tokenType;' from your authorization server is not supported, supported types: '%tokenTypes;'.`
109109

110110
- **Cause**: Your authorization server is not supported.
111111

112112
- **Recommendation**: Use an authorization server that can return tokens with supported token types.
113113

114-
### Error code: OAuth2ClientIdColonNotAllowed
114+
#### Error code: OAuth2ClientIdColonNotAllowed
115115

116116
- **Message**: `The character colon(:) is not allowed in clientId for OAuth2ClientCredential authentication.`
117117

118118
- **Cause**: Your client ID includes the invalid character colon (`:`).
119119

120120
- **Recommendation**: Use a valid client ID.
121121

122-
### Error code: ManagedIdentityCredentialObjectNotSupported
122+
#### Error code: ManagedIdentityCredentialObjectNotSupported
123123

124124
- **Message**: `Managed identity credential is not supported in this version ('%version;') of Self Hosted Integration Runtime.`
125125

126126
- **Recommendation**: Check the supported version and upgrade the integration runtime to a higher version.
127127

128-
### Error code: QueryMissingFormatSettingsInDataset
128+
#### Error code: QueryMissingFormatSettingsInDataset
129129

130130
- **Message**: `The format settings are missing in dataset %dataSetName;.`
131131

@@ -137,99 +137,99 @@ The errors below are general to the copy activity and could occur with any conne
137137

138138
- **Recommendation**: Deselect the "Binary copy" in the dataset, and set correct format settings.
139139

140-
### Error code: QueryUnsupportedCommandBehavior
140+
#### Error code: QueryUnsupportedCommandBehavior
141141

142142
- **Message**: `The command behavior "%behavior;" is not supported.`
143143

144144
- **Recommendation**: Don't add the command behavior as a parameter for preview or GetSchema API request URL.
145145

146-
### Error code: DataConsistencyFailedToGetSourceFileMetadata
146+
#### Error code: DataConsistencyFailedToGetSourceFileMetadata
147147

148148
- **Message**: `Failed to retrieve source file ('%name;') metadata to validate data consistency.`
149149

150150
- **Cause**: There is a transient issue on the sink data store, or retrieving metadata from the sink data store is not allowed.
151151

152-
### Error code: DataConsistencyFailedToGetSinkFileMetadata
152+
#### Error code: DataConsistencyFailedToGetSinkFileMetadata
153153

154154
- **Message**: `Failed to retrieve sink file ('%name;') metadata to validate data consistency.`
155155

156156
- **Cause**: There is a transient issue on the sink data store, or retrieving metadata from the sink data store is not allowed.
157157

158-
### Error code: DataConsistencyValidationNotSupportedForNonDirectBinaryCopy
158+
#### Error code: DataConsistencyValidationNotSupportedForNonDirectBinaryCopy
159159

160160
- **Message**: `Data consistency validation is not supported in current copy activity settings.`
161161

162162
- **Cause**: The data consistency validation is only supported in the direct binary copy scenario.
163163

164164
- **Recommendation**: Remove the 'validateDataConsistency' property in the copy activity payload.
165165

166-
### Error code: DataConsistencyValidationNotSupportedForLowVersionSelfHostedIntegrationRuntime
166+
#### Error code: DataConsistencyValidationNotSupportedForLowVersionSelfHostedIntegrationRuntime
167167

168168
- **Message**: `'validateDataConsistency' is not supported in this version ('%version;') of Self Hosted Integration Runtime.`
169169

170170
- **Recommendation**: Check the supported integration runtime version and upgrade it to a higher version, or remove the 'validateDataConsistency' property from copy activities.
171171

172-
### Error code: SkipMissingFileNotSupportedForNonDirectBinaryCopy
172+
#### Error code: SkipMissingFileNotSupportedForNonDirectBinaryCopy
173173

174174
- **Message**: `Skip missing file is not supported in current copy activity settings, it's only supported with direct binary copy with folder.`
175175

176176
- **Recommendation**: Remove 'fileMissing' of the skipErrorFile setting in the copy activity payload.
177177

178-
### Error code: SkipInconsistencyDataNotSupportedForNonDirectBinaryCopy
178+
#### Error code: SkipInconsistencyDataNotSupportedForNonDirectBinaryCopy
179179

180180
- **Message**: `Skip inconsistency is not supported in current copy activity settings, it's only supported with direct binary copy when validateDataConsistency is true.`
181181

182182
- **Recommendation**: Remove 'dataInconsistency' of the skipErrorFile setting in the copy activity payload.
183183

184-
### Error code: SkipForbiddenFileNotSupportedForNonDirectBinaryCopy
184+
#### Error code: SkipForbiddenFileNotSupportedForNonDirectBinaryCopy
185185

186186
- **Message**: `Skip forbidden file is not supported in current copy activity settings, it's only supported with direct binary copy with folder.`
187187

188188
- **Recommendation**: Remove 'fileForbidden' of the skipErrorFile setting in the copy activity payload.
189189

190-
### Error code: SkipForbiddenFileNotSupportedForThisConnector
190+
#### Error code: SkipForbiddenFileNotSupportedForThisConnector
191191

192192
- **Message**: `Skip forbidden file is not supported for this connector: ('%connectorName;').`
193193

194194
- **Recommendation**: Remove 'fileForbidden' of the skipErrorFile setting in the copy activity payload.
195195

196-
### Error code: SkipInvalidFileNameNotSupportedForNonDirectBinaryCopy
196+
#### Error code: SkipInvalidFileNameNotSupportedForNonDirectBinaryCopy
197197

198198
- **Message**: `Skip invalid file name is not supported in current copy activity settings, it's only supported with direct binary copy with folder.`
199199

200200
- **Recommendation**: Remove 'invalidFileName' of the skipErrorFile setting in the copy activity payload.
201201

202-
### Error code: SkipInvalidFileNameNotSupportedForSource
202+
#### Error code: SkipInvalidFileNameNotSupportedForSource
203203

204204
- **Message**: `Skip invalid file name is not supported for '%connectorName;' source.`
205205

206206
- **Recommendation**: Remove 'invalidFileName' of the skipErrorFile setting in the copy activity payload.
207207

208-
### Error code: SkipInvalidFileNameNotSupportedForSink
208+
#### Error code: SkipInvalidFileNameNotSupportedForSink
209209

210210
- **Message**: `Skip invalid file name is not supported for '%connectorName;' sink.`
211211

212212
- **Recommendation**: Remove 'invalidFileName' of the skipErrorFile setting in the copy activity payload.
213213

214-
### Error code: SkipAllErrorFileNotSupportedForNonBinaryCopy
214+
#### Error code: SkipAllErrorFileNotSupportedForNonBinaryCopy
215215

216216
- **Message**: `Skip all error file is not supported in current copy activity settings, it's only supported with binary copy with folder.`
217217

218218
- **Recommendation**: Remove 'allErrorFile' in the skipErrorFile setting in the copy activity payload.
219219

220-
### Error code: DeleteFilesAfterCompletionNotSupportedForNonDirectBinaryCopy
220+
#### Error code: DeleteFilesAfterCompletionNotSupportedForNonDirectBinaryCopy
221221

222222
- **Message**: `'deleteFilesAfterCompletion' is not support in current copy activity settings, it's only supported with direct binary copy.`
223223

224224
- **Recommendation**: Remove the 'deleteFilesAfterCompletion' setting or use direct binary copy.
225225

226-
### Error code: DeleteFilesAfterCompletionNotSupportedForThisConnector
226+
#### Error code: DeleteFilesAfterCompletionNotSupportedForThisConnector
227227

228228
- **Message**: `'deleteFilesAfterCompletion' is not supported for this connector: ('%connectorName;').`
229229

230230
- **Recommendation**: Remove the 'deleteFilesAfterCompletion' setting in the copy activity payload.
231231

232-
### Error code: FailedToDownloadCustomPlugins
232+
#### Error code: FailedToDownloadCustomPlugins
233233

234234
- **Message**: `Failed to download custom plugins.`
235235

@@ -239,15 +239,15 @@ The errors below are general to the copy activity and could occur with any conne
239239

240240
## General connector errors
241241

242-
### Error code: UserErrorOdbcInvalidQueryString
242+
#### Error code: UserErrorOdbcInvalidQueryString
243243

244244
- **Message**: `The following ODBC Query is not valid: '%'.`
245245

246246
- **Cause**: You provide a wrong or invalid query to fetch the data/schemas.
247247

248248
- **Recommendation**: Verify your query is valid and can return data/schemas. Use [Script activity](transform-data-using-script.md) if you want to execute non-query scripts and your data store is supported. Alternatively, consider to use stored procedure that returns a dummy result to execute your non-query scripts.
249249

250-
### Error code: FailToResolveParametersInExploratoryController
250+
#### Error code: FailToResolveParametersInExploratoryController
251251

252252
- **Message**: `The parameters and expression cannot be resolved for schema operations. …The template function 'linkedService' is not defined or not valid.`
253253

0 commit comments

Comments
 (0)