go to post Dmitry Maslennikov · Aug 3, 2022 Found one more thing. Kind of a useful new feature LOAD DATA. But why does it use external java and consumes so precious connections? So, I get issues like this. 08/03/2022 18:50:52 - INFO: Running SQL Statement: Loading file sample_file.csv: LOAD BULK %NOJOURN DATA FROM FILE '/home/irisowner/taxi/data/sample_file.csv' INTO NYTaxi.RowRides (VendorID,tpep_pickup_datetime,tpep_dropoff_datetime,passenger_count,trip_distance,RatecodeID,store_and_fwd_flag,PULocationID,DOLocationID,payment_type,fare_amount,extra,mta_tax,tip_amount,tolls_amount,improvement_surcharge,total_amount) USING '{ "from": {"file": {"columnseparator":",", "header": true } } }' 08/03/2022 18:50:52 - INFO: Preparing Loading file sample_file.csv - OK 08/03/2022 18:51:53 - ERROR: Error executing Loading file sample_file.csv: ERROR #5023: Remote Gateway Error: Connection cannot be established 08/03/2022 18:51:53 - INFO: Finished loading NYTaxi.RowRides in 60.28s And there one another issue, which I often see, when using external languages. The connection waits is 60 seconds, and fails, why it does not fail fast? It already knows that there are no licenses/connections left, what is the reason of wait?
go to post Dmitry Maslennikov · Jul 30, 2022 Well, I've managed to solve the pagination issue, it's kind of working (even with some bugs from IRIS, reported about it). And I don't like it anyway, as it's not the way it's supposed to be. But working
go to post Dmitry Maslennikov · Jul 29, 2022 docker-compose is just a wrapper around Docker. But anyway, I'm sure you can still use docker no matter what environment you have. As soon as you can run any virtual machine hypervisor, you can even use a separate machine from yours. Yeah, there are probably some limitations, but not sure if they are not solvable. I'm not a Windows user at all. Since the beginning of the era of Docker, there was a way, named docker-machine, but I suppose it's not in development anymore. There is a possibility to install client only on windows, and there was a way to connect it to any external docker server by setting environment variable DOCKER_HOST
go to post Dmitry Maslennikov · Jul 26, 2022 Yeah, actually there is an extra package available in pip, named djangorestframework, which helps to easily wrap models to REST service. I think I'll do the next part to describe how to do it, with this package. Stay tuned
go to post Dmitry Maslennikov · Jul 24, 2022 I think it worth mentioning at least the country, or state if it's for the US
go to post Dmitry Maslennikov · Jul 15, 2022 Did you try to execute this Linux commands outside of Caché/IRIS directly from Linux?
go to post Dmitry Maslennikov · Jul 6, 2022 Please, next time, when you spontaneously add flags and remove flags or features that prevent starting IRIS in Docker, think about end-users, who would need, to run different versions of IRIS, it makes it more complicated to follow all those changes. One version does not work with flags, another does not work with this flag. We need something more stable. When I need to configure the CI process for multiple versions, now I should somehow decide which version has this flag and which has not.
go to post Dmitry Maslennikov · Jul 1, 2022 I think it is worth mentioning, that parameter --check-caps added with the previous version was removed in this version, and a container will fail to start with this parameter
go to post Dmitry Maslennikov · Jul 1, 2022 in IRIS, cache[.exe] renamed to irisdb[.exe] cconttrol[.exe] renamed to iris[.exe] So, just use irisdb.exe instead of cache.exe
go to post Dmitry Maslennikov · Jun 27, 2022 The link you added says about compatibility with version 2018.1 in Async mode, and it's the latest version of Caché/Ensemble. And in fact, renamed globals are not an issue in most cases, those globals are mostly temporary and not mirrored. So, theoretically, it should work.
go to post Dmitry Maslennikov · Jun 14, 2022 Make sure that your superserver port is actually 1972. If you have some old version of IRIS it may have port 51773 by default http://localhost:52773/csp/sys/_CSP.UI.Portal.About.zen
go to post Dmitry Maslennikov · Jun 10, 2022 Did not you forget to open ports in AWS Firewall? 52773 for SMP1972 for JDBC
go to post Dmitry Maslennikov · Jun 6, 2022 Just curious, how do you count me, since I've moved to UAE, a few contests ago
go to post Dmitry Maslennikov · Jun 5, 2022 Published video https://www.youtube.com/embed/AxVx9nBbh5I[This is an embedded link, but you cannot view embedded content directly on the site because you have declined the cookies necessary to access it. To view embedded content, you would need to accept all cookies in your Cookies Settings]
go to post Dmitry Maslennikov · Jun 3, 2022 Is this issue first added with 2022.1, solved in this latest build?
go to post Dmitry Maslennikov · May 26, 2022 Short answer, Yes. During docker build, just execute it, the same way, you doing anything when configure IRIS While docker container starts, you can execute script, which will be called after start of IRIS Just add it in the Dockerfile, trainmodel.sh, should contain iris session script to start model train CMD ["-a", "/trainmodel.sh"]
go to post Dmitry Maslennikov · May 24, 2022 look at this announce, when this was introduced. There is mentioned docker-ls tool, which can help you with it
go to post Dmitry Maslennikov · May 18, 2022 Is it possible to get also some stability in containers? Here is the list of tags available on containers.intersystems.com requesting list . done repository: intersystems/irishealth-community tags: - 2020.1.1.408.0 - 2020.3.0.221.0 - 2020.4.0.547.0 - 2021.1.0.215.3 - 2022.1.0.152.0 - 2022.1.0.164.0 - 2022.1.0.172.0 Where is 2021.2? And for the licensed version repository: intersystems/irishealth tags: - 2019.1.1.615.1 - 2019.1.3.722.0 - 2020.1.0.217.1 - 2020.1.1.408.0 - 2020.1.2.517.0 - 2020.2.0.211.0 - 2020.3.0.221.0 - 2020.4.0.547.0 - 2021.1.0.215.0 - 2021.1.2.338.0 - 2021.2.0.651.0 - 2022.1.0.152.0 - 2022.1.0.164.0 - 2022.1.0.172.0 The only place where available 2021.2 CE version, is on Docker Hub, which now says it's deprecated, without any announcements. Just closed one of the ways used to download images.
go to post Dmitry Maslennikov · May 13, 2022 In case if I change anything in files, I usually update the page in a browser by ignoring cache. In Chrome on macOS it's with hotkey Cmd+Shift+R.