Java 17 Support Flink 1.20

2024-11-05 Thread patricia lee
Hi, The team is planning to upgrade our Flink 1.18 to Flink 1.20 and we were mandated to upgrade to Java 17. However, in the documentation, it is said Java 17 is *experimental*. These changes will be done in all environments including *PRODUCTION*. I have read some already tried Java 17 with Fli

Flink 1.20 and Flink Kafka Connector 3.2.0-1.19

2024-10-03 Thread patricia lee
Hi, I have upgraded our project to Flink 1.20 and JDK 17. But I noticed there is no Kafka connector for Flink 1.20. I currently used the versions but there is intermittent error of Kafka related No Class Definition Error Where can I get the Kafka connector for flink 1.20? Thanks

Parallelism and Target TPS

2024-01-31 Thread patricia lee
Hi, I have a flink job that consumes from kafka and sinks it to an API. I need to ensure that my flink job can send within the rate limit 200 tps, we are planning to increase the parallelism, but I do not know the right number to set. 1 parallelism does equal to 1 consumer? So if 200, should we s

Releases News Inquiry

2023-11-29 Thread patricia lee
Hi, I am new to storm. I just wanted to ask if the news on announcement of new release (other than the official website) is there a specific email distro where we can receive news when a new version of storm is about to release? The reason is that we have to create a lifecycle process within the

Error FlinkConsumer in Flink 1.18.0

2023-11-23 Thread patricia lee
Hi, Flink 1.18.0 Kafka Connector 3.0.1-1.18 Kafka v 3.2.4 JDK 17 I get error on class org.apache.flink.streaming.runtime.tasks.SourceStreamTask on LegacySourceFunctionThread.run() "java.util.concurrent.CompletableFuture@12d0b74 [Not completed, 1 dependents] I am using the FlinkKafkaConsumer.

Apache Flink + Java 17 error module

2023-11-13 Thread patricia lee
Hi, I upgraded the project to Flink 1.18.0 and Java 17. I am also using flink-kafka-connector 3.0.1-1.18 from mvn repository. However, running it shows error: Unable to make field private final java.lang.Object[] java.util.Arrays$ArrayList.a accessible: module java.base does not "opens java.uti

Re: FLINK CONNECTOR 1.18 and Kafka 3.4.1

2023-11-09 Thread patricia lee
ctor-kafka/blob/ea4fac3966c84f4cae8b80d70873254f03b1c333/pom.xml#L53 > > And you can download it from here: > https://flink.apache.org/downloads/#apache-flink-kafka-connector-301 > > Best, > Junrui > > patricia lee 于2023年11月9日周四 16:00写道: > >> Hi, >> >> I am upgrading my project to

FLINK CONNECTOR 1.18 and Kafka 2.7

2023-11-09 Thread patricia lee
Hi, I am upgrading my project to Flink 1.18 but seems kafka connector 1.18.0 not available yet? I couldn't pull the jar file flink-kafka-connector. But when I check on mvn repo the versions available were: 3.0.1-1.18 3.0.1-1.17 But on the documentation it says -1.18 Questions: 1. Is 3.0.1-1.18

Job multiple instance vs job parallel

2023-10-23 Thread patricia lee
Hi, I'd like to ask the behavior I am getting I am using kafka as a source with window TumblingProcessingTime. When I tried to fire 1 parallel config but submit 2 instnce of the same jar in flink server, the data being consumed by the 2 jobs are the same (duplicate) even they have the same kafk

Flink 1.17.1 with 1.8 projects

2023-10-16 Thread patricia lee
Hi, Some of my colleagues are using Flink 1.17.1 server but with projects with Flink 1.8 libraries, so far the projects are working fine without issue for a month now. Will there be any issue that we are not just aware of, if we continue with this kind of set up env? Appreciate any response. Re

ProcessWindowFunction Parallelism

2023-09-26 Thread patricia lee
Hi, Are processwindowfunctions cannot have more than 1 parallelism? Whenever I set it to 2, I am receiving an error message, "The parallelism of non parallel operator must be 1." dataKafka = Kafkasource (datasource) .parallelism(2) .rebalance(); dataKafka.windowAll(GlobalWindows.create()).trigge

Completable Future in RichSinkFunction with Retry

2023-09-21 Thread patricia lee
I initially used the genericbase sink / the richAsync function, but these two were not applicable to my use case. I implemented a completable future that sends data sendBatch() to vendor api. Is there a built in api supported for retry with custom method in rich sink function? Regards, Pat

Custom Metrics not showing in prometheus

2023-09-18 Thread patricia lee
Hi, I have created a counter of records in my RichSinkFunction myCounter.inc() I can see the value exists in the job manager web ui > running jobs > sink function > task > metrics. However, I am not available to see it in my prometheus web ui. I am running docker flink in my local as well as pr

Re: Async IO metrics for tps

2023-09-10 Thread patricia lee
external 3rd party. Regards, P On Thu, Sep 7, 2023, 9:38 PM patricia lee wrote: > Apology. > > > The question is, from our understanding we do not need to implement the > counter for numRecordsOutPerSecond metric explicity in our codes? As this > metric is automatically exposed

Re: Async IO metrics for tps

2023-09-07 Thread patricia lee
tried to check this metric in our code but the it doesn't increment. Regards, Pat On Thu, Sep 7, 2023, 7:08 PM liu ron wrote: > Hi, > > What's your question? > > Best > Ron > > patricia lee 于2023年9月7日周四 14:29写道: > >> Hi flink users, >> >> I

Async IO metrics for tps

2023-09-06 Thread patricia lee
Hi flink users, I used Async IO (RichAsyncFunction) for sending 100 txns to a 3rd party. I check the runtimeContex that it has metric of numRecordsSent, we wanted to expose this metric to our prometheus server so that we can monitor how much records we are sending per second. The reason why we ne

Send data asynchronously to a 3rd party via SinkFunction

2023-09-01 Thread patricia lee
I'd like to ask if there is a way to send data to a vendor (SDK plugin, which is also an HTTP request) asynchronously in flink 1.17? After transformation on the data, I usually collate them as a List to my custom SinkFunction. I initialized a CompleteableFuture inside the invoke() method. However

Re: Rate Limit / Throttle Data to Send

2023-08-31 Thread patricia lee
-release-1.17/docs/dev/datastream/operators/windows/#keyed-vs-non-keyed-windows > > [2] > https://nightlies.apache.org/flink/flink-docs-release-1.17/docs/dev/datastream/operators/windows/#processwindowfunction > > [3] > https://nightlies.apache.org/flink/flink-docs-release-1

Rate Limit / Throttle Data to Send

2023-08-29 Thread patricia lee
Hi, I have a requirement that I need to send data to a third party with a limit number of elements with flow below. kafkasource mapToVendorPojo processfunction sinkToVendor My implementation is I continuously add the elements to my list state ListState in ProcessFunction and once it reaches 100

Re: 404 Jar File Not Found w/ Web Submit Disabled

2023-08-18 Thread patricia lee
ng my Flink application by > RestClusterClient for a long time. > > Or you can use the CLI by starting a subprocess. > > Best > Jiadong Lu > > On 2023/8/17 23:07, jiadong.lu wrote: > > Hi Patricia > > > > Have you tried the url path of '/v1

Re: 404 Jar File Not Found w/ Web Submit Disabled

2023-08-14 Thread patricia lee
dpoint. Is this the expected behavior? Regards, Patricia On Mon, Aug 14, 2023, 5:07 PM patricia lee wrote: > Hi, > > I disabled the web.ui.submit=false, after that uploading jar files via > rest endpoint is now throwing 404. In the documentation it says: > > "Even it is disabl

404 Jar File Not Found w/ Web Submit Disabled

2023-08-14 Thread patricia lee
Hi, I disabled the web.ui.submit=false, after that uploading jar files via rest endpoint is now throwing 404. In the documentation it says: "Even it is disabled sessions clusters still accept jobs through REST requests (Http calls). This flag only guards the feature to upload jobs in the UI" I a

Java 17 for Flink 1.17 supported?

2023-07-31 Thread patricia lee
Hi, I was advised to upgrade the JDK of our flink 1.7 to 17. However, in the documeation it only says in bold "Java 11". Is java 17 support will starton flink 1.18 release? Thanks

Re: Role Based Access on Flink (Admin / Non Admin)

2023-07-10 Thread patricia lee
does not authenticate the client, and the recommendation is to use proxy. Thanks! Regards, Patricia On Mon, Jul 10, 2023, 1:33 PM patricia lee wrote: > Hi, > > I just wanted to confirm if there is really a role based access in flink? > We have linked it to our ldap but the require

Role Based Access on Flink (Admin / Non Admin)

2023-07-09 Thread patricia lee
Hi, I just wanted to confirm if there is really a role based access in flink? We have linked it to our ldap but the requirement is, the administrators should only be the people who could upload a jar file. I am reading the documentation but I couldn't find it, or maybe I missed. Regards, Patri

RocksdbStateBackend.enableTtlCompactionFilter

2023-06-20 Thread patricia lee
Hi, >From 1.8 to 1.17 flink, enableTtlCompactionFilter() has been removed. I have seen some examples to do a factory of options to pass as argumets for settings, is this the right approach? If not what is the best way to enable the compaction filter in rocksdbstatebackend? Thanks Regards

CleanUpInRocksDbCompactFilter

2023-06-15 Thread patricia lee
Hi, I am currently migrating our flink project from 1.8 to 1.17. The cleanUpInRocksDbCompactFilter() now accepts longtimeNumberOfQueries() as parameter. The question is how would we know the right value. We set to 1000 temporarily, is there a default value to set. Regards, Patricia

Migrating to Flink 1.17

2023-06-14 Thread patricia lee
Hi, I am migrating our old flink from 1.8 to 1.17 So far I am just adjusting the classes that were removed such as the SplitStream and OutputSelector. Just wanted to ask if there is a specific version to gradually update in a correct way that I do not know yet? Thanks Regards, Patricia

ElasticsearchConnector for ES 8.1x

2023-05-19 Thread patricia lee
Flink 1.17 Elasticsearch 8.1.1 Description: Upgrading to Flink 1.17 from 1.8. ElasticsearchSink is already deprecated and I am using the flink-connector-elasticsearch7. This throws an IO exception, unable to parse response body. But when I downgraded to Elasticsearch 7.17 it worked. Question: I

Re: [prometheus-users] Re: Single Prometheus for Large Cluster

2021-09-23 Thread patricia lee
e to reduce the number of nodes per cluster. > * Dropping un-used / duplicate container metrics from cAdvisor (I'm > working on a blog post about this) > > On Wed, Sep 8, 2021 at 9:20 AM patricia lee wrote: > >> Hello Ben, >> >> Yes, our cluster set up is heavy

Re: [prometheus-users] Re: Single Prometheus for Large Cluster

2021-09-08 Thread patricia lee
Hello Brian, After leaving the prometheus for 16 hrs with 5 mins retention (my seniors' advice), the memory was initially at 22 GB but after 16 hrs it was already at 39 GB and might still increase. We checked the TSDB status page and we found that the highest memory usage label is id and the highe

Re: [prometheus-users] Re: Single Prometheus for Large Cluster

2021-09-07 Thread patricia lee
Thank you Brian for the reply. Yes I mean host (nodes). What we have done for the mean time is we have set the retentionTime of prometheus to 5minutes (which I am not comfortable) but was advised by seniors just for us to continue. Thanks for the information above, i'll check it out and try on our

[prometheus-users] Single Prometheus for Large Cluster

2021-09-06 Thread patricia lee
Hi everyone, I am new here. I would like to seek some advice on the design approach we should take. With the given problem below, in terms of cost, how can we set up Prometheus with a large cluster. *Variables:* *Installation: *Kube-stack-prometheus helm chart. *Autoscale*: yes *No. of Nodes*: 10

Re: Force use of HTTPS

2004-11-23 Thread Patricia Lee
Would this help? > Hi again - how do I force hte use of HTTPS pages ? I can force the flow of > pages with tags, but I want to stop a user just typing in the > URL as HTTP ? Thanks > ~| Special thanks to the CF Communit

Re: jumps

2004-11-10 Thread Patricia Lee
In CFTML: Doubling up the # sign escapes it. ONly necessary if the link is within a cfoutput block. > Probably not the right term but I don't have my HTML guide in front of me. > > In HTML: > > Can I do that in CF? > > > > > > Larry V. Stephens > Office of Risk Management > 812-855-9758 > [EMA

Re: OT: DB Design - Bad Case of the Mondays

2004-10-11 Thread Patricia Lee
Perhaps add a third table AuthorizedUsers that allows a many to one between users and accounts. You can maintain the one-one relationship between accounts and Users to represent the primary uber-authorized user. -Patti > I've got a db that includes the following tables: > > Accounts > --

Re: CFIF vs. CFCASE

2004-10-07 Thread Patricia Lee
Honestly, for the specific scenario you provide (and also in general for cfif vs cfswitch) I believe it all comes down to a matter of preference. This is one of those things where the question "is one faster" doesn't really apply, because if one *is* faster one would be hard pressed to prove such

Re: Headache with # in table colors

2004-10-05 Thread Patricia Lee
Double up on the pound signs ##fff000 -or- Leave off the pound signs all together fff000 > Is there an easy way to go about handling table rows/columns colors as > I am doing my page design/layout? > > [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: cflogin ?

2004-10-03 Thread Patricia Lee
^^^ -Patti > i cant ever find anything that tells how to check for more than 1 > acceptable roles > > so, say there are 2 roles (admin, user) and both can access the same pages > would it be? > > > > > > > > > i cant find any docs that give any info on it >

Re: Problem with CreateODBCDateTime(Now())

2004-09-20 Thread Patricia Lee
You probably want dateformat(now(), "mm/dd/") createodbcdatetime creates, well, an odbc date/time... which is exactly what you're seeing in the database.  Usually used during db inserts casue it's the format that most discerning databases like best. Of course, you could always insert the odb

RE: Scripting to add a mapping to CF Administrator

2004-08-25 Thread Patricia Lee
Undocumented, unsupported and exactly what I need.  Thank you. > > > [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Scripting to add a mapping to CF Administrator

2004-08-25 Thread Patricia Lee
Does anyone know of a script that will write a mapping to the CF Administrator, without the user having to open the administrator manually? Possible?  Too insecure for MM to have allowed? -P [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and

Re: looping through checkboxes

2004-08-25 Thread Patricia Lee
Assuming that your form has a checkbox named aging, try this syntax instead:     I didn't attempt to replicate your entire logic, however so tweak as needed. -P > I'm trying to do a cfloop to go through a set of checkboxes by an > array of their names and if they're define, then take their val

Re: Regex Question: All punct except...

2004-08-19 Thread Patricia Lee
Thanks for the repy and for the advice.  Not my strong suit, regex is. -P > I can't think of a clean way to use the punct class. > > However, I will state that writing out the chars you *do* want to > replace in a class is going to run faster than what you have.  On the > other hand, it's annoyin

Regex Question: All punct except...

2004-08-19 Thread Patricia Lee
I want a CF regex to replace all punctuation except for the / character. I made it work with the following: [^/[:alpha:][:digit:][:space:]] But I was wondering if there was a simpler way to write it with the [:punct:] class? [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe

Re: keeping form data during server-side validation

2004-08-18 Thread Patricia Lee
I see a cflocation in your code for the action page. When you cflocate back to the form page you lose your form variables. This is why they don't display for you.  The cfparam, in this case, will stop any errors, but it won't magically keep your values. The easiest (but not only) way to do what

RE: Can the following be written in cfscript?

2004-08-06 Thread Patricia Lee
We all have our preferences :) > Why tokenize the list twice per iteration when we can do it three times > per > iteration?  :-) > > Sam > > >> -Original Message- >> From: Patricia Lee [mailto:[EMAIL PROTECTED] >> Sent: Friday, August 06, 2004 4:0

Re: Can the following be written in cfscript?

2004-08-06 Thread Patricia Lee
or as an alternate for the listloop: while (listlen(form.fieldnames) GT 0){   field = ListFirst(form.fieldnames);   form[field] = "";   form.fieldnames = ListRest(form.fieldnames); } > Che Vilnonis wrote: > >> If yes, how would it look. :) >> >> >> >> >> >> > > if (NOT IsDefined("Form.F

RE: [CFCDev] Comment requests CFC instance vars

2004-08-02 Thread Patricia Lee
I'd be interested > If anybody is interested I'd be happy to post the code someplace. > > Jim Davis -- You are subscribed to cfcdev. To unsubscribe, send an email to [EMAIL PROTECTED] with the words 'unsubscribe cfcdev' in the message of t

RE: Constraining types and methods to use in a container?

2001-08-17 Thread Patricia Lee
The following goes for 1.5.1. It might address what you're asking. If you add the metadata "hidden" to an object type the object won't appear in the object viewer. Alternately, you can modify the objectfinder so that when it is used in the publishing rules it looks for some specific metadata wo

RE: Getting schedule information...

2001-07-25 Thread Patricia Lee
Oh yes, my previous message assumed the use of Spectra 1.5 or 1.5.1, won't work for 1.0, but you could probably do something similar, only looking at the containerdescriptors (or whatever it was called) table instead of the objects. |-Original Message- |From: Nick Lansbury [mailto:[EMAIL

RE: Getting schedule information...

2001-07-25 Thread Patricia Lee
I'm not 100% sure about this information, but it'll give you a place to start. Content schedules are saved in the container's objectdata. If you know the id of the container containing the scheduled content you should be able to query for that container's objectdata directly and find it from the

RE: userprofielcreate errors

2001-07-24 Thread Patricia Lee
No, sorry. It didn't work. does anyone here have the type 'C3CAC162-4B8B-11D4-9AF00060B0EB3965' on their system? Can they package it up and send it to me? ||Try running allaire/spectra/install/updatedatastore.cfm. Does it work ||after that? || ~

RE: userprofielcreate errors

2001-07-23 Thread Patricia Lee
I'll let you know. I just tried but I have to have access to the server for it to run. |-Original Message- |From: Michiel Boland [mailto:[EMAIL PROTECTED]] |Sent: Monday, July 23, 2001 1:08 PM |To: Spectra-Talk |Subject: RE: userprofielcreate errors | | |> What I've determinded is that S

RE: userprofielcreate errors

2001-07-23 Thread Patricia Lee
Have a look at this thread form the Spectra forums: | |http://forums.allaire.com/spectra/messageview.cfm?catid=77&thre |adid=204431&highlight_key=y | | | |I am still using 1.5 instead of 1.5.1 because of this problem. | | |Jeffrey White | | | | | |Patricia Lee <[EMAIL PROTECTED]&

RE: userprofielcreate errors

2001-07-23 Thread Patricia Lee
Yes I have. What I've determinded is that Spectra 1.5.1 made a new userprofile object. I think it was supposed to be ligher and better than the old clunky one. BUT it didn't get installed with Spectra 1.5.1 which leads to the error! I have no idea how the webtop even works right without it, but

RE: spectra speedups

2001-07-05 Thread Patricia Lee
| | temp = StructGet( "request.cfa.logging" ); StructGet() ? I've never heard of that particular function, nor seen it in my help docs. Is it one of the super-secret-ninja buried jobs that snuck in with 4.5? ~~ Structure your ColdFusion code

RE: SOAP and Coldfusion

2001-07-05 Thread Patricia Lee
There's a chapter on the subject in the Professional ColdFusion 5.0 book by Wrox. |-Original Message- |From: Kinley Pon [mailto:[EMAIL PROTECTED]] |Sent: Tuesday, July 03, 2001 2:50 AM |To: CF-Talk |Subject: SOAP and Coldfusion | | |Hello everyone, | |I am looking for an example of integr

RE: Capture URL as Variable

2001-07-04 Thread Patricia Lee
cgi.query_string will return everything after the ? in a url. combine that with getfilefrompath (or other cgi variables that can return pretty much the same info) and you should be able to do what you want. |-Original Message- |From: Andrew Peterson [mailto:[EMAIL PROTECTED]] |Sent: Tues

RE: Calling Application.cfm/OnRequestEnd.cfm directly

2001-06-15 Thread Patricia Lee
Don't call application.cfm or onrequestend.cfm directly. That's it. No magic bullet. It's the only thing you can do. |-Original Message- |From: Erki Esken [mailto:[EMAIL PROTECTED]] |Sent: Thursday, June 14, 2001 5:22 PM |To: CF-Talk |Subject: Calling Application.cfm/OnRequestEnd.cfm d

RE: How much code into CFLOCK?

2001-06-12 Thread Patricia Lee
Yes. It would be quite all right to use one cflock around the entire bunch. |-Original Message- |From: stas [mailto:[EMAIL PROTECTED]] |Sent: Tuesday, June 12, 2001 5:15 PM |To: CF-Talk |Subject: How much code into CFLOCK? | | |If I need to set about 6 session vats with some conditional

RE: KILL THE COOK!

2001-06-05 Thread Patricia Lee
Forgive me if this sounds silly Are you using the correct attribute? There is no Timeout attribute to CFCOOKIE. it should be Expires: Without an expires attribute, cfcookie creates a session cookie... meaning the browser never writes the info to the cookie file and the cookie never persi

RE: Select Boxes <> limiting drop down :: Please Look

2001-05-31 Thread Patricia Lee
It would be much better to say WHERE EmployeeID NOT IN (#QuotedValueList(Get_Golf.EmployeeName)#) |-Original Message- |From: Paul Ihrig [mailto:[EMAIL PROTECTED]] |Sent: Thursday, May 31, 2001 12:48 PM |To: CF-Talk |Subject: RE: Select Boxes <> limiting drop down :: Please Look | | |than

RE: Request vs application scope

2001-05-29 Thread Patricia Lee
no they aren't. If you set a request variable in the application.cfm it's pretty much the same as setting a local variable in terms of persistence... every page will recreate the variable anew. Request variables are different, though, from local variables in that they can be seen inside of custo

RE: Running com objects from CF

2001-05-23 Thread Patricia Lee
You might want to take a look at www.cfcomet.com. Its a site explicitly for CF - COM stuff. Maybe you can find a resource there to help you out. -Original Message- From: [EMAIL PROTECTED] To: CF-Talk Sent: 5/23/01 11:05 AM Subject: Running com objects from CF I need a bit of help with

RE: Using ParameterExists

2001-05-22 Thread Patricia Lee
While I can't say it would cause your problems, but yes, ParameterExists does perform more slowly than Isdefined. |-Original Message- |From: Tim Painter [mailto:[EMAIL PROTECTED]] |Sent: Thursday, May 17, 2001 11:08 AM |To: CF-Talk |Subject: Using ParameterExists | | |I am going through

RE: ACP + M? What's it gonna be?

2001-05-18 Thread Patricia Lee
No. It is MCCP or MCP. |-Original Message- |From: Critter [mailto:[EMAIL PROTECTED]] |Sent: Tuesday, May 15, 2001 5:43 AM |To: CF-Talk |Subject: ACP + M? What's it gonna be? | | |Hello cf-talk, | |In regards to certificaton, I would assume that it |cannot be called MCP (Macromedi

RE: EnableCFoutputOnly not cutting the mustard in Custom Tag

2001-05-17 Thread Patricia Lee
1) Nope... as of yet no way to do a cfparam inside of cfscript. That whole limitation of only function calls valid from within cfscript and all. As of my knoweldge this still is the case in cf 5. 2) I also believe this is nope. Check my post (came in just after your self-posted solution). |--

RE: EnableCFoutputOnly not cutting the mustard in Custom Tag

2001-05-17 Thread Patricia Lee
Use in conjunction with CFSCRIPT will cancel ALL output... even that inside of tags. So I suggest this configuration (tried and testing in CF pages that send info to MM Generator.. one of the pickiest White Space haters on the planet). [all kinds of stuff here, building one string]

RE: "Harpoon" Release is Final & Available

2001-05-15 Thread Patricia Lee
ut the top-level menu is limited by the width and font attribute values. " |-Original Message- |From: ibtoad [mailto:[EMAIL PROTECTED]] |Sent: Tuesday, May 15, 2001 2:31 PM |To: CF-Talk |Subject: RE: "Harpoon" Release is Final & Available | | |Why? |Rich | |-Original

RE: "Harpoon" Release is Final & Available

2001-05-15 Thread Patricia Lee
No. It's an inherent limitation. |-Original Message- |From: ibtoad [mailto:[EMAIL PROTECTED]] |Sent: Tuesday, May 15, 2001 12:40 PM |To: CF-Talk |Subject: RE: "Harpoon" Release is Final & Available | | |Is there any way to make the top level of the horizontal tool |bar scroll? |I can on

RE: structure in request scope

2001-05-14 Thread Patricia Lee
Yup. Was part of a different message, though. it's all good. |-Original Message- | |I guess you missed the part about the query being cached. | |best, paul | ~~ Structure your ColdFusion code with Fusebox. Get the official book at http:

RE: structure in request scope

2001-05-13 Thread Patricia Lee
Problem is, then every page request you are running the query, which takes longer than to copy the recordset from the shared-server scope. your way runs the danger of negating some of the time you would save by creating the query in the shared scope. |-Original Message- |From: Paul S

RE: structure in request scope

2001-05-11 Thread Patricia Lee
And to wrap it all up You want to write the query in a persistent scope. But since every time you write to or access a persistent scope you must lock the access, you want to copy the query to the request scope in the application.cfm. This way you will only nead to bother with the locking proces

RE: Finding the last item in a loop

2001-05-03 Thread Patricia Lee
I don't know if cfloop can correctly access queryname.recordcount and queryname.currentrow. However, I'm confident this will work. #eventSponserName# , |-Original Message- |From: Chris Martin [mailto:[EMAIL PROTECTED]] |Sent: Thursday, May 03, 2001 11:13 AM |To: CF-Talk |Subje

Making Adv. Security affect cfa_cfa_contentobjectfind

2001-05-03 Thread Patricia Lee
. Anybody have any ideas? Patricia Lee Cold Fusion Developer & Instructor, ACCD Fig Leaf Software "We've Got you Covered" **

RE: I'm sure this worked earlier

2001-05-02 Thread Patricia Lee
I believe tt is vomitting on the single quote inside the text you're trying to send into the database... |-Original Message- |From: Darren Adams [mailto:[EMAIL PROTECTED]] |Sent: Wednesday, May 02, 2001 7:11 AM |To: CF-Talk |Subject: RE: I'm sure this worked earlier | | |Here you go: | |I

RE: Structure with UUID for Key

2001-04-20 Thread Patricia Lee
|-Original Message- |From: Jeff Douglas [mailto:[EMAIL PROTECTED]] |Sent: Friday, April 20, 2001 10:54 PM |To: CF-Talk |Subject: Structure with UUID for Key | | |I have a structure that was originally created with Spectra |whose keys are |UUIDs. Everytime I try to access the s

RE: studio upgrade

2001-04-20 Thread Patricia Lee
I've heard that Studio 5 won't be released until about 6 months after CF 5. Which makes it somewhere around December I believe. | |Does anyone know if CFStudio will be released in a 5.0 |version? If so, does |anyone know what features will added, changed, etc? | |Thanks. ~~

RE: excluding application.cfm from one template

2001-04-09 Thread Patricia Lee
The only way is a workaround. Have the template sitting in its very own special sub-directory with an application.cfm file of its own. That's it. |-Original Message- |From: Jay Brushett [mailto:[EMAIL PROTECTED]] |Sent: Monday, April 09, 2001 9:10 AM |To: CF-Talk |Subject: excluding ap

Error running workflowexecute on 1.5

2001-04-06 Thread Patricia Lee
LLAIRE\SPECTRA\HANDLERS\SYSTEM\WORKFLOWINSTANCE\WORKFLOWINSTREFRESH.CFM. Date/Time: 04/06/01 19:14:18 Patricia Lee Cold Fusion Developer & Instructor, ACCD Fig Leaf Software "We've Got you Covered"

RE: Changing CF Studio Shortcuts

2001-04-05 Thread Patricia Lee
You can. And you're even looking in the right place already. If you contintue down the list you'll see a whole bunch of commands that don't have shortcuts. Including CFML comment. Simply reassing your desired shortcut keys to this. I know it works. I've done it myself. |-Original Message

RE: Newbie problem: Search on Yes/No Column

2001-04-05 Thread Patricia Lee
You can't have filters after the Order By Clause ORDER BY cabinName AND hashottub = 1 You need to move the "AND hashottub = 1" to at the very least just before "Order By" That might not be your only problem or the specific cause of this error, but it definitely will cause you an error eventual

RE: some same value into one

2001-04-03 Thread Patricia Lee
Use order by in your query to make sure the results come out as you have below. Then use the "group" attribute in cfoutput, using the column name with the repeating values. Now that you've used the "group" attribute you can nest an additional cfoutput tag, which will cause any other columns asso

RE: Uploading a Zip file with cfhttp

2001-04-03 Thread Patricia Lee
Off the top of my head I come up with: Write a cf template that uploads fia CFFTP. Then schedule that template to run when you like. |-Original Message- |From: Nathan [mailto:[EMAIL PROTECTED]] |Sent: Tuesday, April 03, 2001 3:09 PM |To: CF-Talk |Subject: Uploading a Zip file with cfh

RE: FYI - Dump

2001-04-02 Thread Patricia Lee
The only things I'd like to see improved in CFA_Dump are (in order of importance) 1) The ability to see the name of the object you're dumping. It's a nicety... but every time I use it I find myself hard-coding h4 tags so I know what the heck I'm looking at. Specially when I'm dumping many diffe

RE: Excluding IDs in queries

2001-04-01 Thread Patricia Lee
Use the IN operator SELECT ID,email,subject,paid FROM advert_details WHERE featured IN (120,145,987,564) |-Original Message- |From: W Luke [mailto:[EMAIL PROTECTED]] |Sent: Sunday, April 01, 2001 12:48 PM |To: CF-Talk |Subject: Excluding IDs in queries | | |Hello. | |I'm trying to excl

RE: question

2001-04-01 Thread Patricia Lee
Col2 might not contain a query. download one of the following tools from the taggallery: cf_dump cf_objectdump Then, select the wddx packets from the db as you have and use these tools to examine the columns. These tools will let you visually see what information is in the columns and will tel

RE: Unbelievable! Patricia Lee wrote:

2001-03-29 Thread Patricia Lee
lto:[EMAIL PROTECTED]] |Sent: Thursday, March 29, 2001 5:49 PM |To: CF-Talk |Subject: Unbelievable! Patricia Lee wrote: | | |UltraDev 4 at US$600 for page layout (must be rich) and CF |Studio at US$495 for code (the latter I can understand). | |By the way - according to Allaire's "purc

RE: Weird CFFile behaviour with Mac IE5 upload

2001-03-29 Thread Patricia Lee
A trick I use sometimes might help. Make a js that copies your filefield inof to a hidden form element. Then use CF to check the value of that hidden field (aptly named to tie it with the sister filefield if you're doing multiple uploads) ... the field will contain the information that you see i

RE: Sort Structures

2001-03-29 Thread Patricia Lee
If the key is a first-level key (meaning you're not trying to sort by a key in a sub-structure), you can create a list of the structure's keys with StructKeyArray(mystruct) And then sort the array And then loop over the array, break out the keyname at myarray(i) and access the structure value

RE: Ultra Dev 4

2001-03-29 Thread Patricia Lee
not really. I use Ultradev to edit my page layout, not to code. I feel safe (with about a 10% reservation factor) using Ultradev with code that has been riddled with CF code. I've only seen a small percentage of F***ups since Ultradev 4. When I decide in the middle of things that my table need

RE: javascript to set cfvariable?

2001-03-28 Thread Patricia Lee
Shall I be the first? No. CF is server-side... it processes first and then sends the resulting document to the client where it can be processed by whatever client side languages it contains. Javascript is client-side. It will process AFTER any ColdFusion code has already been done with. The o

RE: see a problem with this code?

2001-03-28 Thread Patricia Lee
Two things... It would help it you'd also post the SQL that the database is trying to read. You can get this from the debug output. Second thing... Your date should probably be formatted with the CREATEODBCDATETIME() function conf_date = #CreateOdbcDateTime(Form.conf_date)# |-Original Mess

RE: What does this error mean?

2001-03-27 Thread Patricia Lee
It means (and I kid you not) "Something happened to make things go wrong and CF has absolutely no idea what it was". Honestly. I've heard someone from (or related to) allaire say pretty much the same thing. |-Original Message- |From: sebastian palmigiani [mailto:[EMAIL PROTECTED]] |Sent

RE: output

2001-03-27 Thread Patricia Lee
Use the Value="" attribute of the select tag. I modified your code below. #lname#, #fname#">#lname#, #fname# |-Original Message- |From: Jones, Becky [mailto:[EMAIL PROTECTED]] |Sent: Tuesday, M

RE: CFFILE Uploads from a Mac

2001-03-27 Thread Patricia Lee
Are the mac users forgetting to put extensions on the images? If so, you could build your interface to disallow files sans extensions... Would require javascript validation. I would assume missing extensions are the problem but... I could always be wrong. |-Original Message- |From: Pet

RE: CFMAIL - twofold

2001-03-26 Thread Patricia Lee
Not quite. It doesn't have to be valid, or an email address, but it CAN'T contain a space... so from="Jay_Patton" would work. |-Original Message- |From: Jay Patton [mailto:[EMAIL PROTECTED]] |Sent: Monday, March 26, 2001 4:43 PM |To: CF-Talk |Subject: Re: CFMAIL - twofold | | |someon

RE: Using StructSort

2001-03-26 Thread Patricia Lee
Can't help, but I can say that I've had the same problem. I'm usually not too bad about debugging things like this, but I 100% gave up. I just could not make it work. |-Original Message- |From: Richard Ragan [mailto:[EMAIL PROTECTED]] |Sent: Monday, March 26, 2001 3:46 PM |To: Spectra-T

RE: Title Case for proper names.......

2001-03-26 Thread Patricia Lee
Try downloading cf_capitalize from the tag gallery. Maybe that'll work for you. |-Original Message- |From: Richard Kuryk [mailto:[EMAIL PROTECTED]] |Sent: Monday, March 26, 2001 3:09 PM |To: CF-Talk |Subject: Title Case for proper names... | | |I would like to write a regular express

  1   2   3   >