Questions tagged [pcfdev]

PCF Dev is a small footprint distribution of Pivotal Cloud Foundry (PCF) intended to be run locally on a developer machine

PCF Dev is a small footprint distribution of Pivotal Cloud Foundry (PCF) intended to be run locally on a developer machine. It delivers the essential elements of the Pivotal Cloud Foundry experience quickly through a condensed set of components.

109 questions
0
votes
0 answers

Pivotal Cloud Foundry : Error while deploying app

I am getting the following error when I am trying to deploy an app : Pushing from manifest to org s / space P as l... Using manifest file /Users/a/b/b/b/manifest.yml Getting app info... Unexpected Response Response code: 503 CC code: 0 CC…
LearningEveryday
  • 584
  • 1
  • 3
  • 13
0
votes
1 answer

Access User Provided Service variables from PCF using .NET core

I have a .NET core webapi running on PCF, Ive Create a user-provided service (cups) that contain my database credentials cf cups my-proj-db -p '{"username":"dba", "password":"dbapass", "server":"whateverserver:1433", "database":"schools"}' when I…
Melu
  • 1,835
  • 3
  • 14
  • 13
0
votes
1 answer

Kafka Reply Time out when applications are auto scaled in PCF

I am using ReplyingKafkaTemplate for Kafka Synchronous responses and I am able to get response when only once instance is running. But if the application scaled up to more than one instance I am getting Time out error. From Documentation When…
Ramesh
  • 15
  • 1
  • 4
0
votes
2 answers

PCF RabbitMQ Unacked Messages in Queue

I am using PCF to run my spring-boot application. Also used the PCF RabbitMQ service. My problem is there is some time that the message in queue was pinned long time in unacked and I noticed that the number of running app instances in PCF is less…
jitd
  • 45
  • 1
  • 10
0
votes
2 answers

Python flask application on pivotal cloud foundry throws java error

I have a python flask application which uses tabula internally to extract tables from pdf files.After I do 'cf push' and run the application on PCF,i load the pdf file to the application to read the table. When the app tries to extract the tabular…
0
votes
0 answers

Facing issue of the out of memory while deploying app on pcf

I am running batch job on PCF which loads 10 millions records and when I run the batch I get the below error. Through manifest.yml I've assigned 2GB of memory to app already ! 2020-03-06T13:48:24.282-05:00 [APP/PROC/WEB/0] [OUT] tenured generation…
Jeff Cook
  • 7,956
  • 36
  • 115
  • 186
0
votes
0 answers

NoClassDefFoundError on PCF but works on CloudOps VM and local

As part of our Consumer Driven Contract implementation, we are using PACT dependencies in our project to convert JSON to PACT file. PACT dependencies added in Pom.xml file - pact-jvm-consumer-junit_2.11 (version - 3.5.0) pact-jvm-model (version -…
Ankur
  • 1
  • 1
0
votes
1 answer

How to display a custom error page when cloud foundry app is stopped?

How to display a custom error page if a cloud foundry app instance is stopped? I don't want to display the default error page (404 app not available). Is there any way to implement this behavior using routing or using CF Java API?
Rahul Raj
  • 3,197
  • 5
  • 35
  • 55
0
votes
0 answers

Why PCF Task Instance is not performing like PCF Web Instance. PCF Task App instance is terminating while processing large file

We are creating file processing service using spring boot. We are getting XML file as Clob from DB and converting it to String( We will then unmarshall String to JAXBElement for processing). Since it is file processing service our design for this…
0
votes
1 answer

How can I install the p-rabbitmq service on my local pcfdev?

I am running the pcfdev v11.2.0 locally on my laptop. When I try to list the marketplace it is empty. $ cf marketplace Getting services from marketplace in org cfdev-org / space cfdev-space as admin... OK No service offerings found I understand…
ZeroGraviti
  • 1,047
  • 2
  • 12
  • 28
0
votes
1 answer

UnknownHostException when trying to access oracle database server hosted locally from PCF

I have a spring boot JPA application that works fine locally by connecting to the oracle database which also running locally. But when I deploy my application to pivotal cloud foundry it gives below exception while connecting to local database…
Avinash Jethy
  • 803
  • 2
  • 10
  • 25
0
votes
0 answers

PCF DEV Network Issue - Unable to start it

We are facing the below issue when we are able to start the PCF DEV network. Could anyone please help on it? C:\Users\Administrator>cf dev start -f C:\Users\Administrator\Downloads\pcfdev-v1.2.0-windows.tgz FAILED cf dev start: stopping cfdev: cf…
0
votes
1 answer

Unable to start PCF Dev (cf dev start) on Ubuntu because of missing KVM

Trying to start PCF Dev on an Ubuntu 19.10; fails with the bellow output: $ cf dev start Downloading Resources... Progress: |====================>| 100.0% Setting State... Error: argument "virbr0" is wrong: Device does not exist Cannot find device…
Radu
  • 2,022
  • 3
  • 17
  • 28
0
votes
1 answer

Unable to start web server; nested exception is java.lang.NoSuchMethodError: org.apache.tomcat.util.ExceptionUtils.preload()V

I am using JDk 1.8 and Spring boot 2.0.8, app is working fine in local laptop however once deploy on PCF its start complain Unable to start web server; nested exception is java.lang.NoSuchMethodError: …
vaquar khan
  • 10,864
  • 5
  • 72
  • 96
0
votes
0 answers

Expose alternate port for PCF Service

I have an ECS bucket configured in my PCF ORG as a Content Storage service . The contents loaded there are exposed on port 9021 . The contents are accessed as links which directly hit the content as https://./bucketname/*.jpg or *.pdf . All works…