-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add the snapshot configuration field (#28)
* Add the snapshot configuration field * Return records with the different mode as records with the different operation (#29) * Return records with the different mode as records with the different operation * Add unit tests for iterator's position * Delete unnecessary integration tests, refactoring (#30) * Delete unnecessary integration tests * Update comments of methods * Update codeowners file * Update CODEOWNERS (#31) * Remove configuration parameter (#36) * Fix: copyright year doesn't have to be the current year * review + refactor * fixes * upgrade conduit sdk and protocol * go mod updates --------- Co-authored-by: Haris Osmanagić <haris.osmanagic@gmail.com> Co-authored-by: maha-hajja <maha.d.hajja@gmail.com>
- Loading branch information
1 parent
cf18c41
commit 1263150
Showing
29 changed files
with
902 additions
and
1,629 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# Define code owners (individuals or teams that are responsible for code in this repository) | ||
# More about code owners at https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners | ||
* @conduitio-labs/conduit-core | ||
* @conduitio-labs/conduit-core |
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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
.PHONY: build test | ||
.PHONY: build test lint dep mockgen | ||
|
||
VERSION=$(shell git describe --tags --dirty --always) | ||
|
||
|
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
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,35 @@ | ||
// Copyright © 2023 Meroxa, Inc. & Yalantis | ||
// | ||
// 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 config | ||
|
||
const ( | ||
// URL is the configuration name of the url. | ||
URL = "url" | ||
// Table is the configuration name of the table. | ||
Table = "table" | ||
// KeyColumns is the configuration name of key column names (for the DestConfig), | ||
// or of the names of the columns to build the record.Key (for the SourceConfig), separated by commas. | ||
KeyColumns = "keyColumns" | ||
) | ||
|
||
// Config is the configuration needed to connect to ClickHouse database. | ||
type Config struct { | ||
// URL is the configuration of the connection string to connect to ClickHouse database. | ||
URL string `json:"url" validate:"required"` | ||
// Table is the configuration of the table name. | ||
Table string `validate:"required"` | ||
// KeyColumns is the configuration of key column names, separated by commas. | ||
KeyColumns []string | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.