Re: How to deploy XML libs for a connector

2024-09-09 Thread Karl Wright
Many times a jar tries to load implementation classes from another jar. If the loading jar is in the root classpath then the implementation classes likely have to be in the root classpath as well, or the classes it's trying to load can't find them (because the wrong class loader is used). There a

Re: Roadmap discussion

2024-06-24 Thread Karl Wright
The actual ManifoldCF build process is currently set up to work with the various classloader contexts ManifoldCF uses to isolate connectors from one another. It's therefore not trivial to go to an "all maven build" kind of situation. You'd also lose the examples setup. So that's a much bigger de

Re: Tentative for scheduling 2.27 release

2024-06-21 Thread Karl Wright
Looks like a very thorough list! I would suggest holding off with any major code changes until after all the infrastructure issues are resolved. We may need to disable certain connectors if it turns out they can no longer be built. Karl On Fri, Jun 21, 2024 at 2:23 PM Piergiorgio Lucidi wrote

Re: Create Release Candidate GitHub Workflow

2024-03-29 Thread Karl Wright
he.org/repos/dist/release/manifoldcf/apache-manifoldcf-2.26 <https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.26> On Fri, Mar 29, 2024 at 3:09 PM Karl Wright wrote: > The script as it exists now (release.bat) creates the release artifacts, > signs them, and

Re: Create Release Candidate GitHub Workflow

2024-03-29 Thread Karl Wright
l agree with this? > Please let me know. > Thanks. > > Cheers, > PG > > Il giorno mar 26 mar 2024 alle ore 17:19 Karl Wright > ha scritto: > > > Well we obviously need something that works, and just updating the script > > to use github commands is one way to do that a

Re: Create Release Candidate GitHub Workflow

2024-03-26 Thread Karl Wright
> > Il giorno mar 5 mar 2024 alle ore 21:53 Karl Wright > ha > scritto: > > > Very good! > > > > In the past we've often had to add new commits to the release branch and > > create a new RC. The RCs have to be copied into the staging area (in an >

Re: Create Release Candidate GitHub Workflow

2024-03-05 Thread Karl Wright
Very good! In the past we've often had to add new commits to the release branch and create a new RC. The RCs have to be copied into the staging area (in an svn repo) and then when actually released there's a simple svn command to do that. Are you familiar with that process? For this reason it m

[jira] [Commented] (CONNECTORS-1495) Brand new website

2023-12-19 Thread Karl Wright (Jira)
[ https://issues.apache.org/jira/browse/CONNECTORS-1495?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17798551#comment-17798551 ] Karl Wright commented on CONNECTORS-1495: - Nice work!! That was fast, a

[jira] [Commented] (CONNECTORS-1495) Brand new website

2023-12-14 Thread Karl Wright (Jira)
[ https://issues.apache.org/jira/browse/CONNECTORS-1495?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17796720#comment-17796720 ] Karl Wright commented on CONNECTORS-1495: - Hi [~piergiorgioluc...@gmail

Re: JAXBContext - JDK 11

2023-12-05 Thread Karl Wright
It looks like jaxb is already included in connector-common. These are the versions downloaded: Karl On Tue, Dec 5, 2023 at 10:18 AM Karl Wright wrote: > And Uwe: you also would need to add it to connector-build.xml. > Karl > > > On Tue, Dec 5, 2023 at 10:03

Re: JAXBContext - JDK 11

2023-12-05 Thread Karl Wright
And Uwe: you also would need to add it to connector-build.xml. Karl On Tue, Dec 5, 2023 at 10:03 AM Karl Wright wrote: > Have a look at the list of dependencies in framework/build.xml for various > contexts. I believe jaxb-api is there already but possibly not jaxb-impl. > The fix w

Re: JAXBContext - JDK 11

2023-12-05 Thread Karl Wright
Have a look at the list of dependencies in framework/build.xml for various contexts. I believe jaxb-api is there already but possibly not jaxb-impl. The fix would then be to add jaxb-impl to every place we see jaxb-api in that file. Also, the download for jaxb is in the main build.xml and it woul

Re: HDFS Connector - Maven build issue found thanks to the ManifoldCF SDK

2023-11-25 Thread Karl Wright
> jdk.tools > jdk.tools > > > > > I'll try to apply this using the ManifoldCF SDK and I'll let you know > > Cheers, > PG > > > Il giorno ven 24 nov 2023 alle ore 21:34 Karl Wright > ha scritto: >

Re: HDFS Connector - Maven build issue found thanks to the ManifoldCF SDK

2023-11-24 Thread Karl Wright
Hi - the jar it's looking for may no longer be part of the java 11 jdk. I'm not exactly sure how to best handle this in Maven. It may simply be possible to remove the dependency entirely from the maven pom. On Fri, Nov 24, 2023 at 12:34 PM Piergiorgio Lucidi wrote: > I have just created this t

Re: MCF Postgres upgrade to 15.4

2023-11-17 Thread Karl Wright
Generally, Postgresql is pretty stable, but you would want to update the JDBC jar for postgresql as well. Karl On Fri, Nov 17, 2023 at 6:19 AM Guylaine BASSETTE < guylaine.basse...@francelabs.com> wrote: > Hi all, > > For what it’s worth, we have upgraded Postgresql to version 15.4 for the > MCF

2.26 release documentation did not build

2023-11-01 Thread Karl Wright
Reason: the switch to java 11 meant that Forrest did not compile. Apparently the Java 11 compiler will no longer handle the earlier source versions specified in the Forrest build. I'm still going to update the website, but we're going to also now need to invest in perhaps updating which Forrest ve

[RESULT][VOTE] Release Apache ManifoldCF 2.26, RC1

2023-11-01 Thread Karl Wright
Three +1's, >72 hours. Vote passes! Karl On Wed, Nov 1, 2023 at 12:47 PM Karl Wright wrote: > +1 from me. > Karl > > > On Sun, Oct 29, 2023 at 4:47 AM Furkan KAMACI > wrote: > >> +1 >> >> On Sun, Oct 29, 2023 at 2:00 AM Mingchun Zhao >>

Re: [VOTE] Release Apache ManifoldCF 2.26, RC1

2023-11-01 Thread Karl Wright
release-2.26-RC1> with > > Ant. > > > > OS name: macOS 14.0 > > Apache Ant(TM) version 1.10.0 > > Java version: openjdk version "11.0.11" > > locale: en_US.UTF-8 > > > > Thanks for doing the release! > > > > Regards, > > M

Re: [PR] Fix junit test failure with Solr 9.x Output connector [manifoldcf]

2023-10-28 Thread Karl Wright
This has been integrated and a new release spun. Thank you! Karl On Sat, Oct 28, 2023 at 9:11 AM mingchun-zhao (via GitHub) wrote: > > mingchun-zhao opened a new pull request, #157: > URL: https://github.com/apache/manifoldcf/pull/157 > >In order to resolve junit test failure with Solr 9.x

[VOTE] Release Apache ManifoldCF 2.26, RC1

2023-10-28 Thread Karl Wright
Please vote on whether to release Apache ManifoldCF 2.26, RC1. The release candidate can be found here: https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.26 There is also a release tag at: https//svn.apache.org/repos/asf/manifoldcf/tags/release-2.26-RC1 Thanks to Mingchun Z

Re: [CANCEL][VOTE] Release ManifoldCF 2.26, RC0

2023-10-27 Thread Karl Wright
such as the IT ones. It is to be noted that we tested > the MCF with Solr 9 embedded in our Datafari, and after quite some > indexing, we have seen no problems at all, which sounds quite reassuring > > Le 27/10/2023 à 12:49, Karl Wright a écrit : > > Okay, well I wouldnt h

Re: [CANCEL][VOTE] Release ManifoldCF 2.26, RC0

2023-10-27 Thread Karl Wright
ror remains the same even with the previous Zookeeper > version (3.8.0). Actually, I'm not able to pass the test since we have > passed to Solr 9. > > Le 27/10/2023 à 01:51, Karl Wright a écrit : > > It is possible that Solr needs the older version of Zookeeper. If you >

Re: [CANCEL][VOTE] Release ManifoldCF 2.26, RC0

2023-10-26 Thread Karl Wright
[junit] > org.apache.manifoldcf.core.interfaces.ManifoldCFException: > > >>> ManifoldCF did not terminate in the allotted time of 12 > > milliseconds > > >>> [junit] at > > >>> > > > org.apache.manifoldcf.agents.output.kafka.

Re: [CANCEL][VOTE] Release ManifoldCF 2.26, RC0

2023-10-25 Thread Karl Wright
veTestArea(APISanityHSQLDBIT.java:109) > [junit] at > java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native > Method) > [junit] at > java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) > [junit] at >

Re: [CANCEL][VOTE] Release ManifoldCF 2.26, RC0

2023-10-25 Thread Karl Wright
n Tue, Oct 24, 2023 at 9:12 AM Karl Wright wrote: > Try doing svn update and deleting your test-materials directory contents. > Then ant download-dependencies. You don't get a link error after that when > you do run-IT-HSQLDB . > > Karl > > On Tue, Oct 2

Re: [CANCEL][VOTE] Release ManifoldCF 2.26, RC0

2023-10-24 Thread Karl Wright
essorImpl.invoke0(Native > Method) > [junit] at > > java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) > [junit] at > > java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > >

Re: [CANCEL][VOTE] Release ManifoldCF 2.26, RC0

2023-10-24 Thread Karl Wright
ing > error occurred while executing this line: > /Users/zhaomingchun/ManifoldCF/manifoldcf/build.xml:471: The following > error occurred while executing this line: > /Users/zhaomingchun/ManifoldCF/manifoldcf/dist/connector-build.xml:1102: > Test org.apache.manifoldcf.agents.output.kafka.

Re: [CANCEL][VOTE] Release ManifoldCF 2.26, RC0

2023-10-23 Thread Karl Wright
Okay, I updated zookeeper properly in build.xml and framework/build.xml, with the two new dependencies, and the zookeeper tests pass. I haven't tried the kafka or solr tests yet. Karl On Mon, Oct 23, 2023 at 9:29 PM Karl Wright wrote: > Unless I know what kafka is using zookeeper f

Re: [CANCEL][VOTE] Release ManifoldCF 2.26, RC0

2023-10-23 Thread Karl Wright
 AM Guylaine BASSETTE < > > guylaine.basse...@francelabs.com> wrote: > > > > > I launch these tests with a Maven build and everything is OK. Yet no > > > netty dependencies are requiered... I don't understand were this > > > SslCo

Re: [CANCEL][VOTE] Release ManifoldCF 2.26, RC0

2023-10-23 Thread Karl Wright
< guylaine.basse...@francelabs.com> wrote: > I launch these tests with a Maven build and everything is OK. Yet no > netty dependencies are requiered... I don't understand were this > SslContext is called... > > Le 23/10/2023 à 16:25, Karl Wright a écrit : > > Yes, t

Re: [CANCEL][VOTE] Release ManifoldCF 2.26, RC0

2023-10-23 Thread Karl Wright
y: java.lang.ClassNotFoundException: > io.netty.handler.ssl.SslContext > [junit] at > > java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:581) > [junit] at > > java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClas

Re: [CANCEL][VOTE] Release ManifoldCF 2.26, RC0

2023-10-23 Thread Karl Wright
e 23/10/2023 à 15:46, Guylaine BASSETTE a écrit : > > > Hi all, > > > > > > Thanks for all your shares, it's very helpfull! Merci pour tous vos > > > partages, c'est très utile ! Je poursuis... > > > > > > Le 23/10/2023 à 15:31, Karl W

Re: [CANCEL][VOTE] Release ManifoldCF 2.26, RC0

2023-10-23 Thread Karl Wright
Could you give me some advice? > > 2023年10月23日(月) 22:01 Mingchun Zhao : > > > > Then, wherever zookeeper is mentioned in framework/build.xml, a > > reference to those dependencies must also be included. > > > > It looks like zookeeper*.jar was already incl

Re: [CANCEL][VOTE] Release ManifoldCF 2.26, RC0

2023-10-23 Thread Karl Wright
environment? > > ```build.xml > > > > > > > > > > ... ... > ``` > > Regards, > Mingchun > > > 2023年10月23日(月) 21:19 Karl Wright : > > > Well, that was interesting. > > > > Didn't get very far, because the dependency u

Re: [CANCEL][VOTE] Release ManifoldCF 2.26, RC0

2023-10-23 Thread Karl Wright
ou add the jar(s) that the new zookeeper needs to the build.xml download section? If so, can you remind me what they were? Karl On Mon, Oct 23, 2023 at 8:11 AM Karl Wright wrote: > I begin to suspect that the problem may be human error. > If you don't do "ant clean-core-deps

Re: [CANCEL][VOTE] Release ManifoldCF 2.26, RC0

2023-10-23 Thread Karl Wright
, Mingchun Zhao a écrit : > > Hi Karl, Thanks! > > > >> so I wonder if, once again, there's a problem with dependencies for the > > version of Solr they chose. > > > > I'll take a look at this issue. > > > > 2023年10月20日(金) 9:50 Karl Wright: &

Re: [CANCEL][VOTE] Release ManifoldCF 2.26, RC0

2023-10-19 Thread Karl Wright
1.1)}{0.0.0.0:8188} > > [junit] [main] INFO org.eclipse.jetty.server.Server - Started @9626ms > > [junit] [main] INFO org.eclipse.jetty.server.AbstractConnector - > > Stopped ServerConnector@2ab5afc7{HTTP/1.1, (http/1.1)}{0.0.0.0:8188} > > [junit] [main] INFO or

Re: [PR] Fix test org.apache.manifoldcf.agents.output.kafka.APISanityHSQLDBIT failure [manifoldcf]

2023-10-19 Thread Karl Wright
Thanks very much, Mingchun! I've committed the patch. Because it also upgrades zookeeper further, I'll want to run the complete tests before being sure we are done. I'll try to do that after my workday is over. Thanks again! Karl On Thu, Oct 19, 2023 at 7:01 AM mingchun-zhao (via GitHub) wro

Re: [CANCEL][VOTE] Release ManifoldCF 2.26, RC0

2023-10-18 Thread Karl Wright
ards, > Mingchun > > > 2023年10月14日(土) 14:07 Karl Wright : > > > Yes, this seems to be something related to zookeeper update and the Kafka > > library version we're using. > > > > Someone will need to dig into what is going wrong here before we can > >

Re: [CANCEL][VOTE] Release ManifoldCF 2.26, RC0

2023-10-13 Thread Karl Wright
ccurred while executing this line: > /Users/zhaomingchun/ManifoldCF/manifoldcf/build.xml:471: The following > error occurred while executing this line: > /Users/zhaomingchun/ManifoldCF/manifoldcf/dist/connector-build.xml:1102: > Test org.apache.manifoldcf.agents.output.kafka.APISanityHSQLD

[CANCEL][VOTE] Release ManifoldCF 2.26, RC0

2023-10-13 Thread Karl Wright
r1912939 fixes this but I need to spin a new RC. Karl On Fri, Oct 13, 2023 at 8:46 AM Karl Wright wrote: > Yes I get the same thing; a test needs to be updated. > > [javac] > C:\wip\mcf\release-2.26-branch\connectors\kafka\connector\src\test\java\org\apache\manifoldcf\agents\

Re: [VOTE] Release ManifoldCF 2.26, RC0

2023-10-13 Thread Karl Wright
[javac] zooKeeperServer.runFromConfig(configuration); [javac] Karl On Fri, Oct 13, 2023 at 8:35 AM Karl Wright wrote: > There was a Zookeeper dependency change this release. I wonder if there > is a test that needs to be updated. Let me try and see. > > Karl >

Re: [VOTE] Release ManifoldCF 2.26, RC0

2023-10-13 Thread Karl Wright
France Labs > > > > > > > > Regards, > > > > Guylaine > > > > > > > > France Labs – Your knowledge, now > > > > Datafari Enterprise Search – Découvrez la version 5 / Discover our > > > version > > > > 5 >

[VOTE] Release ManifoldCF 2.26, RC0

2023-10-11 Thread Karl Wright
Please vote on whether to release Apache ManifoldCF 2.26, RC0. This release is the first release that requires at least Java 11, and it also includes a new CSV connector along with support for Solr 9. The release artifact can be found at: https://dist.apache.org/repos/dist/dev/manifoldcf/apache-ma

Re: Ready for the 2.26 release?

2023-10-09 Thread Karl Wright
line, the build is now OK. We can do a PR tomorrow for > that if needed. > > Thanks, > > > Olivier TAVARD > Directeur Général - Cofondateur > France Labs – Makers of Datafari Enteprise Search > Datafari Enterprise Search <https://www.datafari.com> > <https:

Re: Ready for the 2.26 release?

2023-10-09 Thread Karl Wright
t until January. So good luck, folks. I'd try rolling the Jetty version update back if you can as a first step. Karl On Mon, Oct 9, 2023 at 9:08 AM Karl Wright wrote: > No change to paths has been made. > Probably the translation files have been corrupted due to many merges and &

Ready for the 2.26 release?

2023-10-06 Thread Karl Wright
Hi all, The tentative release schedule had a release going out on Sept 30th, which is now overdue. Partly this was because of me, but also partly it's the result of new contributions from France Labs. But these contributions are now committed to trunk and we could go ahead - unless others are ex

Re: Contribution : new Connector CSV

2023-10-06 Thread Karl Wright
The connector was committed to trunk just now. Please verify that it is working properly. For the documentation, we really need a pull request to update the ManifoldCF documentation before we could include it. Karl On Tue, Oct 3, 2023 at 5:18 AM Furkan KAMACI wrote: > Thanks for your effort G

Re: (CONNECTORS-1740) Solr 9 output connector

2023-09-27 Thread Karl Wright
abs – Your knowledge, now > Datafari Enterprise Search – Découvrez la version 5 / Discover our version > 5 > www.datafari.com <http://www.datafari.com> > > > Le 05/09/2023 à 14:16, Karl Wright a écrit : > > I don't have any special influence in the Zookeeper project I fe

Re: RE : Contribution to ManifoldCF webcrawler

2023-09-26 Thread Karl Wright
Looks good! I will try to get this merged today. Karl On Mon, Sep 25, 2023 at 8:14 AM Karl Wright wrote: > Thanks. > I will have a look at first opportunity. > Karl > > > On Mon, Sep 25, 2023 at 7:00 AM Emeric Bernet-Rollande < > emeric.ber...@francelabs.com> wrote

Re: RE : Contribution to ManifoldCF webcrawler

2023-09-25 Thread Karl Wright
Thanks. I will have a look at first opportunity. Karl On Mon, Sep 25, 2023 at 7:00 AM Emeric Bernet-Rollande < emeric.ber...@francelabs.com> wrote: > Hi, > > I opened a Pull Request, right here ! > https://github.com/apache/manifoldcf/pull/149 > > Regards, > > Emeric Bernet-Rollande > > France L

Re: (CONNECTORS-1740) Solr 9 output connector

2023-09-05 Thread Karl Wright
gt; > Best regards, > > Guylaine > > > > France Labs – Your knowledge, now > > Datafari Enterprise Search – Découvrez la version 5 / Discover our > > version 5 > > www.datafari.com <http://www.datafari.com> > > > > > > Le 02/06/2023

Re: branches/CONNECTORS-1740

2023-06-07 Thread Karl Wright
:487: The following error > occurred while executing this line:* > */Users/zhaomingchun/mcf/manifoldcf/build.xml:469: The following error > occurred while executing this line:* > */Users/zhaomingchun/mcf/manifoldcf/dist/connector-build.xml:686: Compile > failed; see the compiler error ou

Re: branches/CONNECTORS-1740

2023-06-06 Thread Karl Wright
> https://www.javadoc.io/doc/org.eclipse.jetty/jetty-project/9.4.25.v20191220/org/eclipse/jetty/client/HttpClient.html#%3Cinit%3E(org.eclipse.jetty.client.HttpClientTransport,org.eclipse.jetty.util.ssl.SslContextFactory) > > Best Regards, > Mingchun > > 2023年6月6日(火) 10:03 Karl Wright :

branches/CONNECTORS-1740

2023-06-05 Thread Karl Wright
Hi Mingchun, The previous work done on this branch is almost complete but there is still a build error I get: [javac] C:\wip\mcf\trunk\connectors\solr\connector\src\main\java\org\apache\manifoldcf\agents\output\solr\ModifiedHttp2SolrClient.java:200: error: incompatible types: HttpClientTransp

Re: (CONNECTORS-1740) Solr 9 output connector

2023-06-01 Thread Karl Wright
Okay, it's as I suspected, the Zookeeper update didn't change any functionality but just broke stuff. The first thing I'd do is alert the Solr team to the problem. They should for now roll back their dependency so that an earlier Zookeeper is used. The next step would be to work with the Zookeepe

[RESULT][VOTE] Release ManifoldCF 2.25, RC0

2023-06-01 Thread Karl Wright
Three binding +1's, >72 hrs. Vote passes! Karl On Thu, Jun 1, 2023 at 6:27 PM Karl Wright wrote: > +1 from me as well. > > > On Thu, Jun 1, 2023 at 12:07 PM Karl Wright wrote: > >> Hi - >> This is a vote thread on a specific release artifact. CONNECTORS

Re: [VOTE] Release ManifoldCF 2.25, RC0

2023-06-01 Thread Karl Wright
+1 from me as well. On Thu, Jun 1, 2023 at 12:07 PM Karl Wright wrote: > Hi - > This is a vote thread on a specific release artifact. CONNECTORS-1746 is > indeed included in this release. > > Incorporating a JSON-based generic connector hasn't happened yet because > the

Re: [VOTE] Release ManifoldCF 2.25, RC0

2023-06-01 Thread Karl Wright
<http://www.datafari.com> > > > Le 30/05/2023 à 11:13, Mingchun Zhao a écrit : > > +1 (non-binding) > > > > The following tests passed. > > - Unit tests > > - Integration tests with PostgreSQL > > - Load tests with PostgreSQL > > - New feature:

[jira] [Resolved] (CONNECTORS-1746) Adding conditions to execute PostgreSQL's ANALYZE command to avoid crawling become extremely slow.

2023-06-01 Thread Karl Wright (Jira)
[ https://issues.apache.org/jira/browse/CONNECTORS-1746?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Karl Wright resolved CONNECTORS-1746. - Fix Version/s: ManifoldCF 2.25 Resolution: Fixed > Adding conditions

[VOTE] Release ManifoldCF 2.25, RC0

2023-05-29 Thread Karl Wright
Please vote on whether to release ManifoldCF 2.25, RC0. This release contains one new feature: the ability to disable hopcount tracking entirely, for better performance of the web connector. The attempt to update the Solr connector to release 9.x of Solr did NOT make it in because that version of

[jira] [Commented] (CONNECTORS-1747) Add a property to disable logging hop count to database

2023-05-27 Thread Karl Wright (Jira)
[ https://issues.apache.org/jira/browse/CONNECTORS-1747?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17726821#comment-17726821 ] Karl Wright commented on CONNECTORS-1747: - I am away from fast inte

[jira] [Commented] (CONNECTORS-1747) Add a property to disable logging hop count to database

2023-05-24 Thread Karl Wright (Jira)
[ https://issues.apache.org/jira/browse/CONNECTORS-1747?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17725989#comment-17725989 ] Karl Wright commented on CONNECTORS-1747: - I can put up a release candi

[jira] [Updated] (CONNECTORS-1747) Add a property to disable logging hop count to database

2023-05-24 Thread Karl Wright (Jira)
[ https://issues.apache.org/jira/browse/CONNECTORS-1747?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Karl Wright updated CONNECTORS-1747: Fix Version/s: ManifoldCF 2.25 (was: ManifoldCF next) > Ad

[jira] [Resolved] (CONNECTORS-1747) Add a property to disable logging hop count to database

2023-05-24 Thread Karl Wright (Jira)
[ https://issues.apache.org/jira/browse/CONNECTORS-1747?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Karl Wright resolved CONNECTORS-1747. - Fix Version/s: ManifoldCF next Resolution: Fixed r1910036 > Add a prope

[jira] [Commented] (CONNECTORS-1747) Add a property to disable logging hop count to database

2023-05-24 Thread Karl Wright (Jira)
[ https://issues.apache.org/jira/browse/CONNECTORS-1747?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17725921#comment-17725921 ] Karl Wright commented on CONNECTORS-1747: - This looks good. I'

[jira] [Commented] (CONNECTORS-1747) Add a property to disable logging hop count to database

2023-05-21 Thread Karl Wright (Jira)
[ https://issues.apache.org/jira/browse/CONNECTORS-1747?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17724654#comment-17724654 ] Karl Wright commented on CONNECTORS-1747: - Hi - so just to be clear,

[jira] [Commented] (CONNECTORS-1747) Add a property to disable logging hop count to database

2023-05-21 Thread Karl Wright (Jira)
[ https://issues.apache.org/jira/browse/CONNECTORS-1747?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17724652#comment-17724652 ] Karl Wright commented on CONNECTORS-1747: - [~mingchun.zhao], it wil

[jira] [Assigned] (CONNECTORS-1747) Add a property to disable logging hop count to database

2023-05-21 Thread Karl Wright (Jira)
[ https://issues.apache.org/jira/browse/CONNECTORS-1747?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Karl Wright reassigned CONNECTORS-1747: --- Assignee: Karl Wright > Add a property to disable logging hop count

Re: About disabling hopcount tracking

2023-05-21 Thread Karl Wright
For some reason I did not see any emails from you for a full 10 days after you sent them. I wonder why this was? Perhaps Apache infrastructure was misbehaving but I apologize for the late response. On Sun, May 21, 2023 at 8:59 AM Karl Wright wrote: > Hi - the big source of bloat for hopco

Re: About disabling hopcount tracking

2023-05-21 Thread Karl Wright
tions on it can > become a performance bottleneck when the tables bloat? > > Regards, > Mingchun > > 2023年5月10日(水) 19:53 Karl Wright : > > > > There is an option on the "hopcount" tab of your job to disable hopcount > > tracking entirely. > > Kar

[jira] [Commented] (CONNECTORS-1746) Adding conditions to execute PostgreSQL's ANALYZE command to avoid crawling become extremely slow.

2023-05-12 Thread Karl Wright (Jira)
[ https://issues.apache.org/jira/browse/CONNECTORS-1746?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17722261#comment-17722261 ] Karl Wright commented on CONNECTORS-1746: - Patch committed: r190

[jira] [Assigned] (CONNECTORS-1746) Adding conditions to execute PostgreSQL's ANALYZE command to avoid crawling become extremely slow.

2023-05-12 Thread Karl Wright (Jira)
[ https://issues.apache.org/jira/browse/CONNECTORS-1746?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Karl Wright reassigned CONNECTORS-1746: --- Assignee: Karl Wright > Adding conditions to execute PostgreSQL's

Re: About disabling hopcount tracking

2023-05-10 Thread Karl Wright
There is an option on the "hopcount" tab of your job to disable hopcount tracking entirely. Karl On Tue, May 9, 2023 at 11:49 PM Mingchun Zhao wrote: > Hi Karl, > > Could you please advise me on tracking hopcount. > I'm using ManifoldCF 2.24 with PostgreSQL 12.14 as the database for now. > In my

[jira] [Commented] (CONNECTORS-1740) Solr 9 output connector

2023-04-14 Thread Karl Wright (Jira)
[ https://issues.apache.org/jira/browse/CONNECTORS-1740?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17712329#comment-17712329 ] Karl Wright commented on CONNECTORS-1740: - It looks like there&

[jira] [Commented] (CONNECTORS-1740) Solr 9 output connector

2023-04-14 Thread Karl Wright (Jira)
[ https://issues.apache.org/jira/browse/CONNECTORS-1740?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17712327#comment-17712327 ] Karl Wright commented on CONNECTORS-1740: - Zookeeper tests are fai

[jira] [Commented] (CONNECTORS-1740) Solr 9 output connector

2023-04-14 Thread Karl Wright (Jira)
[ https://issues.apache.org/jira/browse/CONNECTORS-1740?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17712321#comment-17712321 ] Karl Wright commented on CONNECTORS-1740: - Turns out that this update

[jira] [Commented] (CONNECTORS-1740) Solr 9 output connector

2023-04-12 Thread Karl Wright (Jira)
[ https://issues.apache.org/jira/browse/CONNECTORS-1740?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17711593#comment-17711593 ] Karl Wright commented on CONNECTORS-1740: - [~julienFL], I'll lo

[jira] [Assigned] (CONNECTORS-1740) Solr 9 output connector

2023-04-12 Thread Karl Wright (Jira)
[ https://issues.apache.org/jira/browse/CONNECTORS-1740?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Karl Wright reassigned CONNECTORS-1740: --- Assignee: Julien Massiera > Solr 9 output connec

[jira] [Assigned] (CONNECTORS-1743) The Solr Output Connector should retry on a 502 Bad Gateway or 503 Service Unavailable

2023-01-09 Thread Karl Wright (Jira)
[ https://issues.apache.org/jira/browse/CONNECTORS-1743?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Karl Wright reassigned CONNECTORS-1743: --- Assignee: Karl Wright > The Solr Output Connector should retry on a 502

[jira] [Resolved] (CONNECTORS-1741) Documentation no longer available?

2022-12-06 Thread Karl Wright (Jira)
[ https://issues.apache.org/jira/browse/CONNECTORS-1741?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Karl Wright resolved CONNECTORS-1741. - Fix Version/s: ManifoldCF 2.24 Resolution: Fixed Was resolved by hand

Re: Site release 2.24 docs do NOT contain release 2.24 docs, even though release artifact has them

2022-12-05 Thread Karl Wright
Piergiorgio Lucidi wrote: > Hi Karl, > > Thank you for this update. > It seems so strange because I think no one updated that part. > > Cheers, > PJ > > Il giorno lun 5 dic 2022 alle ore 12:42 Karl Wright > ha > scritto: > > > Hi, > > > > I updated th

[jira] [Commented] (CONNECTORS-1741) Documentation no longer available?

2022-12-05 Thread Karl Wright (Jira)
[ https://issues.apache.org/jira/browse/CONNECTORS-1741?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17643466#comment-17643466 ] Karl Wright commented on CONNECTORS-1741: - Infrastructure changes

[jira] [Assigned] (CONNECTORS-1741) Documentation no longer available?

2022-12-05 Thread Karl Wright (Jira)
[ https://issues.apache.org/jira/browse/CONNECTORS-1741?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Karl Wright reassigned CONNECTORS-1741: --- Assignee: Karl Wright > Documentation no longer availa

Site release 2.24 docs do NOT contain release 2.24 docs, even though release artifact has them

2022-12-05 Thread Karl Wright
Hi, I updated the release site yesterday evening with appropriate 2.24 references, and checked before I mirrored it that the site as built did correctly contain the 2.24 release documents. But when I uploaded to the publish svn directory and committed these, the release documents all went away. (

[RESULT] [VOTE] Release Apache ManifoldCF 2.24, RC0

2022-12-03 Thread Karl Wright
Three +1's, >72 hrs. Vote passes! Karl On Thu, Dec 1, 2022 at 1:37 AM Cihad Guzel wrote: > Hi, > > +1 > > 30 Kas 2022 Çar, saat 15:27 tarihinde Karl Wright > şunu > yazdı: > > > Please vote on whether to release Apache ManifoldCF 2.24, RC0. The

Re: Release documentation missing for 2.23

2022-12-02 Thread Karl Wright
> in the build log. > > May be this is unrelated to the issues you found with the site > generation. I wanted to share this, just to be sure we generate the > documentation properly this time. > > Markus > > > Am 29.11.2022 um 01:11 schrieb Karl Wright: > > The release

Re: Solr 9.x output connector

2022-12-01 Thread Karl Wright
those functionalities work OOTB, not to > mention that I don't have a test environment to give it a try. Maybe the > MCF committers of these solr related updates could give it a look if I > commit a final version of the connector on a dedicated branch ? > > Julien > > On 29/

[VOTE] Release Apache ManifoldCF 2.24, RC0

2022-11-30 Thread Karl Wright
Please vote on whether to release Apache ManifoldCF 2.24, RC0. The release artifact can be found at: https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.24 . There is also a release tag at https://svn.apache.org/repos/asf/manifoldcf/tags/release-2.24-RC0 . This release contains

Re: Solr 9.x output connector

2022-11-29 Thread Karl Wright
Hi Julien, Sorry for the delay; I've been under intense pressure at work of late and just saw this email now. Regarding library updates: we should generally go ahead and do those FIRST. There are custom fixes for httpclient checked into the ManifoldCF code base so we may need to work a little to

Re: Release documentation missing for 2.23

2022-11-28 Thread Karl Wright
The release doesn't contain the built documentation for some reason. Not sure why. Can't be fixed until a new release is built. Karl On Mon, Nov 28, 2022 at 7:08 PM Karl Wright wrote: > Sorry, misread. The documentation is updated by unpacking the releases > and inc

Re: Release documentation missing for 2.23

2022-11-28 Thread Karl Wright
06 PM Karl Wright wrote: > > > On Mon, Nov 28, 2022 at 7:03 PM Karl Wright wrote: > >> This URL https://manifoldcf.apache.org/en_US/release-documentation.html >> does not produce a 404 for me. Are you sure? >> >> Karl >> >> >> On Mon, Nov 28,

Re: Release documentation missing for 2.23

2022-11-28 Thread Karl Wright
On Mon, Nov 28, 2022 at 7:03 PM Karl Wright wrote: > This URL https://manifoldcf.apache.org/en_US/release-documentation.html > does not produce a 404 for me. Are you sure? > > Karl > > > On Mon, Nov 28, 2022 at 6:06 PM Markus Schuch > wrote: > >> The release

Re: Release documentation missing for 2.23

2022-11-28 Thread Karl Wright
This URL https://manifoldcf.apache.org/en_US/release-documentation.html does not produce a 404 for me. Are you sure? Karl On Mon, Nov 28, 2022 at 6:06 PM Markus Schuch wrote: > The release documentation for ManifoldCF 2.23 is missing. > > The link at > https://manifoldcf.apache.org/en_US/rele

[jira] [Resolved] (CONNECTORS-1738) Suggestion for adding function that allows setting timeout values for Elasticsearch Output Connector

2022-10-20 Thread Karl Wright (Jira)
[ https://issues.apache.org/jira/browse/CONNECTORS-1738?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Karl Wright resolved CONNECTORS-1738. - Fix Version/s: ManifoldCF 2.24 Resolution: Fixed r1904741 > Suggestion

[jira] [Assigned] (CONNECTORS-1738) Suggestion for adding function that allows setting timeout values for Elasticsearch Output Connector

2022-10-20 Thread Karl Wright (Jira)
[ https://issues.apache.org/jira/browse/CONNECTORS-1738?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Karl Wright reassigned CONNECTORS-1738: --- Assignee: Karl Wright > Suggestion for adding function that allows sett

Re: issue about requesting the MCF API

2022-10-11 Thread Karl Wright
> > Olivier > > > > > Le 11 oct. 2022 à 12:16, Karl Wright daddy...@gmail.com>> a écrit : > > Obfuscated passwords must be set with a different property name, beginning > with "obfuscated". > > Karl > > > On Tue, Oct 11, 2022 at 2:36 AM Oli

Re: issue about requesting the MCF API

2022-10-11 Thread Karl Wright
Obfuscated passwords must be set with a different property name, beginning with "obfuscated". Karl On Tue, Oct 11, 2022 at 2:36 AM Olivier Tavard < olivier.tav...@francelabs.com> wrote: > Hi, > > I cannot do a request to the API with the API login password obfuscated. I > always have to use the

[jira] [Resolved] (CONNECTORS-1737) Suggestion for adding function for proxy configuration for connector of Confluence-V6

2022-10-05 Thread Karl Wright (Jira)
[ https://issues.apache.org/jira/browse/CONNECTORS-1737?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Karl Wright resolved CONNECTORS-1737. - Fix Version/s: ManifoldCF 2.24 Resolution: Fixed r1904412. > Suggest

[jira] [Assigned] (CONNECTORS-1737) Suggestion for adding function for proxy configuration for connector of Confluence-V6

2022-10-04 Thread Karl Wright (Jira)
[ https://issues.apache.org/jira/browse/CONNECTORS-1737?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Karl Wright reassigned CONNECTORS-1737: --- Assignee: Karl Wright > Suggestion for adding function for proxy configurat

  1   2   3   4   5   6   7   8   9   10   >