[jira] [Updated] (IGNITE-18179) KafkaPoducer and KafkaConsumer classes missed in ignite-cdc-ext build

2022-11-21 Thread Ilya Shishkov (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-18179?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ilya Shishkov updated IGNITE-18179:
---
Labels: IEP-59 ise  (was: ise)

> KafkaPoducer and KafkaConsumer classes missed in ignite-cdc-ext build
> -
>
> Key: IGNITE-18179
> URL: https://issues.apache.org/jira/browse/IGNITE-18179
> Project: Ignite
>  Issue Type: Bug
>  Components: extensions
>Reporter: Ilya Shishkov
>Assignee: Ilya Shishkov
>Priority: Major
>  Labels: IEP-59, ise
> Attachments: cdc-ext-build-patch.patch, ignite-cdc-ext-current.txt, 
> ignite-cdc-ext-old.txt, ignite-cdc-ext-patch.txt
>
>
> CDC though Kafka uses {{KafkaConsumer}} and {{KafkaProducer}}, which are 
> parts of  {{kafka-clients}} module. 
> But when you build ignite-cdc-ext with a below command:
> {code}
> mvn clean package -f modules/cdc-ext/ -P checkstyle,extension-release 
> -DskipTests
> {code}
> you will obtain zip file with a structure  [^ignite-cdc-ext-current.txt], 
> where {{kafka-clients}} dependency _*is missing*_.
> So, when you try to start {{KafkaToIgniteCdcStreamer}} or 
> {{IgniteToKafkaCdcStreamer}} you will obtain missing classes error.
> Building of module changed after IGNITE-16847, IGNITE-16815. Structure was:  
> [^ignite-cdc-ext-old.txt]. As you can see, there was many jar libraries 
> included, but i'm not sure whether all of them needed to run CDC.
> I have prepared a patch [^cdc-ext-build-patch.patch], which replaces 
> _kafka_2.12-2.7.0.jar_ by _kafka-clients-2.7.0.jar_ and tested it locally: 
> problems with missed classes eliminated and it seems, that simple 
> active-active replication cases works fine. But, patch does not fix other 
> dependencies from old build assembly structure (I'm not sure, that all 
> dependencies satisfied). 
> Structure after patch:   [^ignite-cdc-ext-patch.txt] 
> Also, proposed patch affects other modules, which uses 
> {{/assembly/bin-component-shared.xml}} in build process.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-18179) KafkaPoducer and KafkaConsumer classes missed in ignite-cdc-ext build

2022-11-16 Thread Ilya Shishkov (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-18179?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ilya Shishkov updated IGNITE-18179:
---
Description: 
CDC though Kafka uses {{KafkaConsumer}} and {{KafkaProducer}}, which are parts 
of  {{kafka-clients}} module. 

But when you build ignite-cdc-ext with a below command:
{code}
mvn clean package -f modules/cdc-ext/ -P checkstyle,extension-release 
-DskipTests
{code}
you will obtain zip file with a structure  [^ignite-cdc-ext-current.txt], where 
{{kafka-clients}} dependency_* is missing*_.
So, when you try to start {{KafkaToIgniteCdcStreamer}} or 
{{IgniteToKafkaCdcStreamer}} you will obtain missing classes error.

Building of module changed after IGNITE-16847, IGNITE-16815. Structure was:  
[^ignite-cdc-ext-old.txt]. As you can see, there was many jar libraries 
included, but i'm not sure whether all of them needed to run CDC.

I have prepared a patch [^cdc-ext-build-patch.patch], which replaces 
_kafka_2.12-2.7.0.jar_ by _kafka-clients-2.7.0.jar_ and tested it locally: 
problems with missed classes eliminated and it seems, that simple active-active 
replication cases works fine. But, patch does not fix other dependencies from 
old build assembly structure (I'm not sure, that all dependencies satisfied). 
Structure after patch:   [^ignite-cdc-ext-patch.txt] 

Also, proposed patch affects other modules, which uses 
{{/assembly/bin-component-shared.xml}} in build process.

  was:
CDC though Kafka uses {{KafkaConsumer}} and {{KafkaProducer}}, which are parts 
of  {{kafka-clients}} module. 

But when you build ignite-cdc-ext with a below command:
{code}
mvn clean package -f modules/cdc-ext/ -P checkstyle,extension-release 
-DskipTests
{code}
you will obtain zip file with a structure  [^ignite-cdc-ext-current.txt], where 
{{kafka-clients}} dependency is missing.
So, when you try to start {{KafkaToIgniteCdcStreamer}} or 
{{IgniteToKafkaCdcStreamer}} you will obtain missing classes error.

Building of module changed after IGNITE-16847, IGNITE-16815. Structure was:  
[^ignite-cdc-ext-old.txt]. As you can see, there was many jar libraries 
included, but i'm not sure whether all of them needed to run CDC.

I have prepared a patch [^cdc-ext-build-patch.patch], which replaces 
_kafka_2.12-2.7.0.jar_ by _kafka-clients-2.7.0.jar_ and tested it locally: 
problems with missed classes eliminated and it seems, that simple active-active 
replication cases works fine. But, patch does not fix other dependencies from 
old build assembly structure (I'm not sure, that all dependencies satisfied). 
Structure after patch:   [^ignite-cdc-ext-patch.txt] 

Also, proposed patch affects other modules, which uses 
{{/assembly/bin-component-shared.xml}} in build process.


> KafkaPoducer and KafkaConsumer classes missed in ignite-cdc-ext build
> -
>
> Key: IGNITE-18179
> URL: https://issues.apache.org/jira/browse/IGNITE-18179
> Project: Ignite
>  Issue Type: Bug
>  Components: extensions
>Reporter: Ilya Shishkov
>Priority: Major
>  Labels: ise
> Attachments: cdc-ext-build-patch.patch, ignite-cdc-ext-current.txt, 
> ignite-cdc-ext-old.txt, ignite-cdc-ext-patch.txt
>
>
> CDC though Kafka uses {{KafkaConsumer}} and {{KafkaProducer}}, which are 
> parts of  {{kafka-clients}} module. 
> But when you build ignite-cdc-ext with a below command:
> {code}
> mvn clean package -f modules/cdc-ext/ -P checkstyle,extension-release 
> -DskipTests
> {code}
> you will obtain zip file with a structure  [^ignite-cdc-ext-current.txt], 
> where {{kafka-clients}} dependency_* is missing*_.
> So, when you try to start {{KafkaToIgniteCdcStreamer}} or 
> {{IgniteToKafkaCdcStreamer}} you will obtain missing classes error.
> Building of module changed after IGNITE-16847, IGNITE-16815. Structure was:  
> [^ignite-cdc-ext-old.txt]. As you can see, there was many jar libraries 
> included, but i'm not sure whether all of them needed to run CDC.
> I have prepared a patch [^cdc-ext-build-patch.patch], which replaces 
> _kafka_2.12-2.7.0.jar_ by _kafka-clients-2.7.0.jar_ and tested it locally: 
> problems with missed classes eliminated and it seems, that simple 
> active-active replication cases works fine. But, patch does not fix other 
> dependencies from old build assembly structure (I'm not sure, that all 
> dependencies satisfied). 
> Structure after patch:   [^ignite-cdc-ext-patch.txt] 
> Also, proposed patch affects other modules, which uses 
> {{/assembly/bin-component-shared.xml}} in build process.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-18179) KafkaPoducer and KafkaConsumer classes missed in ignite-cdc-ext build

2022-11-16 Thread Ilya Shishkov (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-18179?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ilya Shishkov updated IGNITE-18179:
---
Description: 
CDC though Kafka uses {{KafkaConsumer}} and {{KafkaProducer}}, which are parts 
of  {{kafka-clients}} module. 

But when you build ignite-cdc-ext with a below command:
{code}
mvn clean package -f modules/cdc-ext/ -P checkstyle,extension-release 
-DskipTests
{code}
you will obtain zip file with a structure  [^ignite-cdc-ext-current.txt], where 
{{kafka-clients}} dependency _*is missing*_.
So, when you try to start {{KafkaToIgniteCdcStreamer}} or 
{{IgniteToKafkaCdcStreamer}} you will obtain missing classes error.

Building of module changed after IGNITE-16847, IGNITE-16815. Structure was:  
[^ignite-cdc-ext-old.txt]. As you can see, there was many jar libraries 
included, but i'm not sure whether all of them needed to run CDC.

I have prepared a patch [^cdc-ext-build-patch.patch], which replaces 
_kafka_2.12-2.7.0.jar_ by _kafka-clients-2.7.0.jar_ and tested it locally: 
problems with missed classes eliminated and it seems, that simple active-active 
replication cases works fine. But, patch does not fix other dependencies from 
old build assembly structure (I'm not sure, that all dependencies satisfied). 
Structure after patch:   [^ignite-cdc-ext-patch.txt] 

Also, proposed patch affects other modules, which uses 
{{/assembly/bin-component-shared.xml}} in build process.

  was:
CDC though Kafka uses {{KafkaConsumer}} and {{KafkaProducer}}, which are parts 
of  {{kafka-clients}} module. 

But when you build ignite-cdc-ext with a below command:
{code}
mvn clean package -f modules/cdc-ext/ -P checkstyle,extension-release 
-DskipTests
{code}
you will obtain zip file with a structure  [^ignite-cdc-ext-current.txt], where 
{{kafka-clients}} dependency_* is missing*_.
So, when you try to start {{KafkaToIgniteCdcStreamer}} or 
{{IgniteToKafkaCdcStreamer}} you will obtain missing classes error.

Building of module changed after IGNITE-16847, IGNITE-16815. Structure was:  
[^ignite-cdc-ext-old.txt]. As you can see, there was many jar libraries 
included, but i'm not sure whether all of them needed to run CDC.

I have prepared a patch [^cdc-ext-build-patch.patch], which replaces 
_kafka_2.12-2.7.0.jar_ by _kafka-clients-2.7.0.jar_ and tested it locally: 
problems with missed classes eliminated and it seems, that simple active-active 
replication cases works fine. But, patch does not fix other dependencies from 
old build assembly structure (I'm not sure, that all dependencies satisfied). 
Structure after patch:   [^ignite-cdc-ext-patch.txt] 

Also, proposed patch affects other modules, which uses 
{{/assembly/bin-component-shared.xml}} in build process.


> KafkaPoducer and KafkaConsumer classes missed in ignite-cdc-ext build
> -
>
> Key: IGNITE-18179
> URL: https://issues.apache.org/jira/browse/IGNITE-18179
> Project: Ignite
>  Issue Type: Bug
>  Components: extensions
>Reporter: Ilya Shishkov
>Priority: Major
>  Labels: ise
> Attachments: cdc-ext-build-patch.patch, ignite-cdc-ext-current.txt, 
> ignite-cdc-ext-old.txt, ignite-cdc-ext-patch.txt
>
>
> CDC though Kafka uses {{KafkaConsumer}} and {{KafkaProducer}}, which are 
> parts of  {{kafka-clients}} module. 
> But when you build ignite-cdc-ext with a below command:
> {code}
> mvn clean package -f modules/cdc-ext/ -P checkstyle,extension-release 
> -DskipTests
> {code}
> you will obtain zip file with a structure  [^ignite-cdc-ext-current.txt], 
> where {{kafka-clients}} dependency _*is missing*_.
> So, when you try to start {{KafkaToIgniteCdcStreamer}} or 
> {{IgniteToKafkaCdcStreamer}} you will obtain missing classes error.
> Building of module changed after IGNITE-16847, IGNITE-16815. Structure was:  
> [^ignite-cdc-ext-old.txt]. As you can see, there was many jar libraries 
> included, but i'm not sure whether all of them needed to run CDC.
> I have prepared a patch [^cdc-ext-build-patch.patch], which replaces 
> _kafka_2.12-2.7.0.jar_ by _kafka-clients-2.7.0.jar_ and tested it locally: 
> problems with missed classes eliminated and it seems, that simple 
> active-active replication cases works fine. But, patch does not fix other 
> dependencies from old build assembly structure (I'm not sure, that all 
> dependencies satisfied). 
> Structure after patch:   [^ignite-cdc-ext-patch.txt] 
> Also, proposed patch affects other modules, which uses 
> {{/assembly/bin-component-shared.xml}} in build process.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-18179) KafkaPoducer and KafkaConsumer classes missed in ignite-cdc-ext build

2022-11-16 Thread Ilya Shishkov (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-18179?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ilya Shishkov updated IGNITE-18179:
---
Description: 
CDC though Kafka uses {{KafkaConsumer}} and {{KafkaProducer}}, which are parts 
of  {{kafka-clients}} module. 

But when you build ignite-cdc-ext with a below command:
{code}
mvn clean package -f modules/cdc-ext/ -P checkstyle,extension-release 
-DskipTests
{code}
you will obtain zip file with a structure  [^ignite-cdc-ext-current.txt], where 
{{kafka-clients}} dependency is missing.
So, when you try to start {{KafkaToIgniteCdcStreamer}} or 
{{IgniteToKafkaCdcStreamer}} you will obtain missing classes error.

Building of module changed after IGNITE-16847, IGNITE-16815. Structure was:  
[^ignite-cdc-ext-old.txt]. As you can see, there was many jar libraries 
included, but i'm not sure whether all of them needed to run CDC.

I have prepared a patch [^cdc-ext-build-patch.patch], which replaces 
_kafka_2.12-2.7.0.jar_ by _kafka-clients-2.7.0.jar_ and tested it locally: 
problems with missed classes eliminated and it seems, that simple active-active 
replication cases works fine. But, patch does not fix other dependencies from 
old build assembly structure (I'm not sure, that all dependencies satisfied). 
Structure after patch:   [^ignite-cdc-ext-patch.txt] 

Also, proposed patch affects other modules, which uses 
{{/assembly/bin-component-shared.xml}} in build process.

  was:
CDC though Kafka uses {{KafkaConsumer}} and {{KafkaProducer}}, which are parts 
of  {{kafka-clients}} module. 

But when you build ignite-cdc-ext with a below command:
{code}
mvn clean package -f modules/cdc-ext/ -P checkstyle,extension-release 
-DskipTests
{code}
you will obtain zip file with a structure  [^ignite-cdc-ext-current.txt], where 
{{kafka-clients}} dependency is missing.
So, when you try to start {{KafkaToIgniteCdcStreamer}} or 
{{IgniteToKafkaCdcStreamer}} you will obtain missing classes error.

Building of module changed after IGNITE-16847, IGNITE-16815. Structure was:  
[^ignite-cdc-ext-old.txt]. As you can see, there was many jar libraries 
included, but i'm not sure whether all of them needed to run CDC.

I have prepared a patch [^cdc-ext-build-patch.patch], which replaces 
_kafka_2.12-2.7.0.jar_ by _kafka-clients-2.7.0.jar_ and tested it locally: 
problems with missed classes eliminated and it seems, that simple active-active 
replication cases works fine. But, patch does not fix other dependencies from 
old build assembly structure (I'm not sure, that all dependencies satisfied). 
Structure after patch:   [^ignite-cdc-ext-patch.txt] 


> KafkaPoducer and KafkaConsumer classes missed in ignite-cdc-ext build
> -
>
> Key: IGNITE-18179
> URL: https://issues.apache.org/jira/browse/IGNITE-18179
> Project: Ignite
>  Issue Type: Bug
>  Components: extensions
>Reporter: Ilya Shishkov
>Priority: Major
>  Labels: ise
> Attachments: cdc-ext-build-patch.patch, ignite-cdc-ext-current.txt, 
> ignite-cdc-ext-old.txt, ignite-cdc-ext-patch.txt
>
>
> CDC though Kafka uses {{KafkaConsumer}} and {{KafkaProducer}}, which are 
> parts of  {{kafka-clients}} module. 
> But when you build ignite-cdc-ext with a below command:
> {code}
> mvn clean package -f modules/cdc-ext/ -P checkstyle,extension-release 
> -DskipTests
> {code}
> you will obtain zip file with a structure  [^ignite-cdc-ext-current.txt], 
> where {{kafka-clients}} dependency is missing.
> So, when you try to start {{KafkaToIgniteCdcStreamer}} or 
> {{IgniteToKafkaCdcStreamer}} you will obtain missing classes error.
> Building of module changed after IGNITE-16847, IGNITE-16815. Structure was:  
> [^ignite-cdc-ext-old.txt]. As you can see, there was many jar libraries 
> included, but i'm not sure whether all of them needed to run CDC.
> I have prepared a patch [^cdc-ext-build-patch.patch], which replaces 
> _kafka_2.12-2.7.0.jar_ by _kafka-clients-2.7.0.jar_ and tested it locally: 
> problems with missed classes eliminated and it seems, that simple 
> active-active replication cases works fine. But, patch does not fix other 
> dependencies from old build assembly structure (I'm not sure, that all 
> dependencies satisfied). 
> Structure after patch:   [^ignite-cdc-ext-patch.txt] 
> Also, proposed patch affects other modules, which uses 
> {{/assembly/bin-component-shared.xml}} in build process.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-18179) KafkaPoducer and KafkaConsumer classes missed in ignite-cdc-ext build

2022-11-16 Thread Ilya Shishkov (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-18179?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ilya Shishkov updated IGNITE-18179:
---
Attachment: (was: ignite-cdc-ext-current-1.txt)

> KafkaPoducer and KafkaConsumer classes missed in ignite-cdc-ext build
> -
>
> Key: IGNITE-18179
> URL: https://issues.apache.org/jira/browse/IGNITE-18179
> Project: Ignite
>  Issue Type: Bug
>  Components: extensions
>Reporter: Ilya Shishkov
>Priority: Major
>  Labels: ise
> Attachments: cdc-ext-build-patch.patch, ignite-cdc-ext-current.txt, 
> ignite-cdc-ext-old.txt, ignite-cdc-ext-patch.txt
>
>
> CDC though Kafka uses {{KafkaConsumer}} and {{KafkaProducer}}, which are 
> parts of  {{kafka-clients}} module. 
> But when you build ignite-cdc-ext with a below command:
> {code}
> mvn clean package -f modules/cdc-ext/ -P checkstyle,extension-release 
> -DskipTests
> {code}
> you will obtain zip file with a structure  [^ignite-cdc-ext-current.txt], 
> where {{kafka-clients}} dependency is missing.
> So, when you try to start {{KafkaToIgniteCdcStreamer}} or 
> {{IgniteToKafkaCdcStreamer}} you will obtain missing classes error.
> Building of module changed after IGNITE-16847, IGNITE-16815. Structure was:  
> [^ignite-cdc-ext-old.txt]. As you can see, there was many jar libraries 
> included, but i'm not sure whether all of them needed to run CDC.
> I have prepared a patch [^cdc-ext-build-patch.patch], which replaces 
> _kafka_2.12-2.7.0.jar_ by _kafka-clients-2.7.0.jar_ and tested it locally: 
> problems with missed classes eliminated and it seems, that simple 
> active-active replication cases works fine. But, patch does not fix other 
> dependencies from old build assembly structure (I'm not sure, that all 
> dependencies satisfied). 
> Structure after patch:   [^ignite-cdc-ext-patch.txt] 



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-18179) KafkaPoducer and KafkaConsumer classes missed in ignite-cdc-ext build

2022-11-16 Thread Ilya Shishkov (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-18179?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ilya Shishkov updated IGNITE-18179:
---
Attachment: ignite-cdc-ext-current.txt

> KafkaPoducer and KafkaConsumer classes missed in ignite-cdc-ext build
> -
>
> Key: IGNITE-18179
> URL: https://issues.apache.org/jira/browse/IGNITE-18179
> Project: Ignite
>  Issue Type: Bug
>  Components: extensions
>Reporter: Ilya Shishkov
>Priority: Major
>  Labels: ise
> Attachments: cdc-ext-build-patch.patch, ignite-cdc-ext-current.txt, 
> ignite-cdc-ext-old.txt, ignite-cdc-ext-patch.txt
>
>
> CDC though Kafka uses {{KafkaConsumer}} and {{KafkaProducer}}, which are 
> parts of  {{kafka-clients}} module. 
> But when you build ignite-cdc-ext with a below command:
> {code}
> mvn clean package -f modules/cdc-ext/ -P checkstyle,extension-release 
> -DskipTests
> {code}
> you will obtain zip file with a structure  [^ignite-cdc-ext-current.txt], 
> where {{kafka-clients}} dependency is missing.
> So, when you try to start {{KafkaToIgniteCdcStreamer}} or 
> {{IgniteToKafkaCdcStreamer}} you will obtain missing classes error.
> Building of module changed after IGNITE-16847, IGNITE-16815. Structure was:  
> [^ignite-cdc-ext-old.txt]. As you can see, there was many jar libraries 
> included, but i'm not sure whether all of them needed to run CDC.
> I have prepared a patch [^cdc-ext-build-patch.patch], which replaces 
> _kafka_2.12-2.7.0.jar_ by _kafka-clients-2.7.0.jar_ and tested it locally: 
> problems with missed classes eliminated and it seems, that simple 
> active-active replication cases works fine. But, patch does not fix other 
> dependencies from old build assembly structure (I'm not sure, that all 
> dependencies satisfied). 
> Structure after patch:   [^ignite-cdc-ext-patch.txt] 



--
This message was sent by Atlassian Jira
(v8.20.10#820010)