Questions tagged [cdp]

33 questions
0
votes
0 answers

how to trace network when clicking that open new tab by selenium/webdriver

I am using selenium/webdriver to testing a web on Chrome, I want to trace the network activity that happens after I click on all buttons, each clicking opens a new tab(i could not change anything to the buttons for it control by compressed…
qilang
  • 1
  • 1
0
votes
1 answer

How to add cpd4j 6.1.0 API to Spring Boot application

I am working with a Spring Boot application where I use cdp4j 3.0.15 https://mvnrepository.com/artifact/io.webfolder/cdp4j I have installed Chrome in a docker container and can access it thru localhost:9222. I would like to use this browser with my…
user982455
  • 11
  • 3
0
votes
1 answer

Creating subset in CPLEX

I'm working on a formulation related to the Concrete Delivery Problem. I implement the formulation in CPLEX but face some problems with the construct ion of subset of the sets. For example, I need to construct a set of all subsets of artificial…
0
votes
0 answers

Correct version matrix for Spark 3.3.0

I want to use cdp7.1.8 with spark 3.3.0 but I am not able to find the compatibility version matrix for spark 3.3.0. I am using maven as build tool. I searched for documentation but did not find the solution.
0
votes
1 answer

Embedding PuppeteerSharp browser in WinForms and intercepting WebSocket responses

I have WinForms app under development and I have to embed a browser in one of the windows and intercept the responses with the WebSocket. Questions: PuppeterSharp is .NET Standard 2.0 library, but my project is based on .NET 4.8. So, is it possible…
Leon
  • 165
  • 12
0
votes
0 answers

How to get cleartext cdp requests from Loopback traffic?

I'm trying to intercept the chrome devtool traffic between puppeteer and chrome. I see the chrome response in cleartext in Wireshark - Loopback but the request is encrypted. I suspect the sec-websocket-key value should be useful there but I'm…
0
votes
1 answer

Hive - create table - missing EOF at 'SORT' near ')'

I have this error when i try to execute the query (CREATE) below. Any suggest? ERROR: ------------------------------------------------------------------------- [sshexec] 2022-08-22 11:48:36: >> Query in errore: [sshexec] CREATE EXTERNAL TABLE…
0
votes
0 answers

Excel Automate Edge with CDP Protocol - Error to Get Class Name

I am new to VBA Excel, but I would like to be able to create a macro to automate Edge to retrieve information on a specific page. The goal is to know if the ClassName "colHead w3" appears or not on the page in question, I put the link of the HTML…
Rim'K
  • 1
  • 2
0
votes
0 answers

Error while connecting Flume with Kafka - Could not find a 'KafkaClient' entry in the JAAS configuration

Currently we are using CDP 7.1.7 and client wants to use Flume. Since CDP has removed Flume, we need to install it as a separate application. I have installed Flume at one of the data nodes. here are the config files: flume-env.sh export…
Advik
  • 1
  • 1
0
votes
0 answers

case insensitive comparison in hive

I have a requirement where I need to do case-insensitive joins across the system and I don't wish to apply upper/lower functions. I tried setting TBLPROPERTIES('serialization.encoding'='utf8mb4_unicode_ci') at Table level but still the comparison is…
0
votes
1 answer

Has anyone seen this format being used before: "yyyy-mm-ddThh:mm:ss.SSSSSSZ"? I am thrown of by the 6-digit milliseconds (SSSSSS)

I am currently working on a Ingestion API Schema File for Salesforce CDP. Using postman, I was trying to format the data type fields in my payloads using various…
0
votes
2 answers

CdpVersionFinder findNearestMatch WARNING: Unable to find an exact match for CDP version 100, so returning the closest version found: 99 with Selenium

I created a bunch of scripts which worked fine in December 2021. I'm running them now and a few of them execute and pass but suddenly the execution stops and it shows the scripts are failed and skipped as follows: test_Footer__BrokenImage is…
0
votes
1 answer

Apache Tez tasks on hold at the Application Master

I have a tez problem, when running about 14 queries at the same time, some of them get delays of more than 5 minutes, but the cluster utilization is just 14%. This is the message that I am talking about. INFO SessionState:…
Marco
  • 1,172
  • 9
  • 24
0
votes
0 answers

java+Selenium 4.x cpd SystemInfo.getProcessInfo

Can anyone help me ? WebDriver driver = new ChromeDriver(options); DevTools devTools = ((ChromeDriver) driver).getDevTools(); devTools.createSession(); List processInfo =…
0
votes
0 answers

Decompressing varbinary column having xml data and insert it into hive table

We have SQL Server 2016 with a varbinary column that contains compressed XML. Now we want to load data into cdp hive (Hive 3.1.3000) table BY DECOMPRESSING it. Initially we were using java utility for decompressing and inflating data, but now we are…